Merge pull request #305222 from shivaraj-bh/update-nixci

nixci: 0.2.0 -> 0.4.0

authored by rewine and committed by GitHub ae2e299f c4fe1b7e

+15 -7
+14 -6
pkgs/tools/nix/nixci/default.nix
··· 6 , openssl 7 , pkg-config 8 , Security 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 pname = "nixci"; 13 - version = "0.2.0"; 14 15 src = fetchCrate { 16 inherit version; 17 pname = "nixci"; 18 - hash = "sha256-Q3V/JL64xkIj0X0NSMRTjRAP3PJC9ouj3CmEscVWdns="; 19 }; 20 21 - cargoHash = "sha256-tjk91AaPsMLfXYB2o1HTTxb6Qr3l8BABPStrKEGvbtM="; 22 23 nativeBuildInputs = [ pkg-config ]; 24 - buildInputs = [ libiconv openssl ] 25 - ++ lib.optionals stdenv.isDarwin [ Security ]; 26 27 # The rust program expects an environment (at build time) that points to the 28 # devour-flake flake. ··· 37 description = "Define and build CI for Nix projects anywhere"; 38 homepage = "https://github.com/srid/nixci"; 39 license = licenses.agpl3Only; 40 - maintainers = with maintainers; [ srid ]; 41 mainProgram = "nixci"; 42 }; 43 }
··· 6 , openssl 7 , pkg-config 8 , Security 9 + , SystemConfiguration 10 + , IOKit 11 }: 12 13 rustPlatform.buildRustPackage rec { 14 pname = "nixci"; 15 + version = "0.4.0"; 16 17 src = fetchCrate { 18 inherit version; 19 pname = "nixci"; 20 + hash = "sha256-JC1LUny8UKflANlcx6Hcgx39CRry+ossnp/RQK36oaI="; 21 }; 22 23 + cargoHash = "sha256-pYPzM7QlQ2EXwrvuXMa1qs0m7cmumh1iPesgJZ0H2kg="; 24 25 nativeBuildInputs = [ pkg-config ]; 26 + 27 + buildInputs = lib.optionals stdenv.isLinux [ 28 + openssl 29 + ] ++ lib.optionals stdenv.isDarwin [ 30 + IOKit 31 + Security 32 + SystemConfiguration 33 + ]; 34 35 # The rust program expects an environment (at build time) that points to the 36 # devour-flake flake. ··· 45 description = "Define and build CI for Nix projects anywhere"; 46 homepage = "https://github.com/srid/nixci"; 47 license = licenses.agpl3Only; 48 + maintainers = with maintainers; [ srid shivaraj-bh ]; 49 mainProgram = "nixci"; 50 }; 51 }
+1 -1
pkgs/top-level/all-packages.nix
··· 39989 alejandra = callPackage ../tools/nix/alejandra { }; 39990 39991 nixci = callPackage ../tools/nix/nixci { 39992 - inherit (darwin.apple_sdk.frameworks) Security; 39993 }; 39994 39995 nixfmt-classic = haskellPackages.nixfmt.bin;
··· 39989 alejandra = callPackage ../tools/nix/alejandra { }; 39990 39991 nixci = callPackage ../tools/nix/nixci { 39992 + inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration IOKit; 39993 }; 39994 39995 nixfmt-classic = haskellPackages.nixfmt.bin;