Merge pull request #310221 from Sigmanificient/coost-3.0.2

coost: 3.0.0 -> 3.0.2, migrate to by-name

authored by

rewine and committed by
GitHub
5117e0c2 9749fce8

+7 -8
+7 -6
pkgs/development/libraries/coost/default.nix pkgs/by-name/co/coost/package.nix
··· 10 withOpenSSL ? true, 11 }: 12 13 - stdenv.mkDerivation rec { 14 pname = "coost"; 15 - version = "3.0.0"; 16 17 src = fetchFromGitHub { 18 owner = "idealvin"; 19 - repo = pname; 20 - rev = "v${version}"; 21 - sha256 = "sha256-qpJh1yl0lYYszNHGo5Jkbzal2hnVzg7UUxiyg/Grva8="; 22 }; 23 24 postPatch = '' ··· 34 "-DBUILD_SHARED_LIBS=ON" 35 ] ++ lib.optional withCurl "-DWITH_LIBCURL=ON" ++ lib.optional withOpenSSL "-DWITH_OPENSSL=ON"; 36 37 passthru.updateScript = gitUpdater { }; 38 39 meta = with lib; { ··· 43 maintainers = [ maintainers.sigmanificient ]; 44 platforms = platforms.unix; 45 }; 46 - }
··· 10 withOpenSSL ? true, 11 }: 12 13 + stdenv.mkDerivation (finalAttrs: { 14 pname = "coost"; 15 + version = "3.0.2"; 16 17 src = fetchFromGitHub { 18 owner = "idealvin"; 19 + repo = "coost"; 20 + rev = "v${finalAttrs.version}"; 21 + hash = "sha256-HbMenAL/UWsqQ1o7cMeWfwXkLh4GxIKV7iuZQD3hDA8="; 22 }; 23 24 postPatch = '' ··· 34 "-DBUILD_SHARED_LIBS=ON" 35 ] ++ lib.optional withCurl "-DWITH_LIBCURL=ON" ++ lib.optional withOpenSSL "-DWITH_OPENSSL=ON"; 36 37 + outputs = [ "out" "dev" ]; 38 passthru.updateScript = gitUpdater { }; 39 40 meta = with lib; { ··· 44 maintainers = [ maintainers.sigmanificient ]; 45 platforms = platforms.unix; 46 }; 47 + })
-2
pkgs/top-level/all-packages.nix
··· 540 541 coolercontrol = recurseIntoAttrs (callPackage ../applications/system/coolercontrol { }); 542 543 - coost = callPackage ../development/libraries/coost { }; 544 - 545 confetty = callPackage ../applications/misc/confetty { }; 546 547 confy = callPackage ../applications/misc/confy { };
··· 540 541 coolercontrol = recurseIntoAttrs (callPackage ../applications/system/coolercontrol { }); 542 543 confetty = callPackage ../applications/misc/confetty { }; 544 545 confy = callPackage ../applications/misc/confy { };