nixpkgs/pkgs/tools/package-management/nix-index/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, makeWrapper, openssl, curl
, nix, Security
2018-10-12 17:04:19 +00:00
}:
2017-07-23 21:09:54 +00:00
2018-10-12 17:04:19 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "nix-index";
2018-10-11 19:42:28 +00:00
version = "0.1.2";
2017-07-23 21:09:54 +00:00
src = fetchFromGitHub {
owner = "bennofs";
repo = "nix-index";
rev = "v${version}";
2018-10-11 19:42:28 +00:00
sha256 = "05fqfwz34n4ijw7ydw2n6bh4bv64rhks85cn720sy5r7bmhfmfa8";
2017-07-23 21:09:54 +00:00
};
cargoSha256 = "161lz96a52s53rhhkxxhcg41bsmh8w6rv6nl8gwqmg3biszy7hah";
nativeBuildInputs = [ pkg-config makeWrapper ];
2018-10-12 17:04:19 +00:00
buildInputs = [ openssl curl ]
2021-01-15 09:19:50 +00:00
++ lib.optional stdenv.isDarwin Security;
2017-07-23 21:09:54 +00:00
2018-11-03 20:54:02 +00:00
doCheck = !stdenv.isDarwin;
2017-07-23 21:09:54 +00:00
postInstall = ''
mkdir -p $out/etc/profile.d
cp ./command-not-found.sh $out/etc/profile.d/command-not-found.sh
substituteInPlace $out/etc/profile.d/command-not-found.sh \
--replace "@out@" "$out"
wrapProgram $out/bin/nix-index \
2021-01-15 09:19:50 +00:00
--prefix PATH : "${lib.makeBinPath [ nix ]}"
2017-07-23 21:09:54 +00:00
'';
meta = with lib; {
2017-07-23 21:09:54 +00:00
description = "A files database for nixpkgs";
homepage = "https://github.com/bennofs/nix-index";
2017-07-23 21:09:54 +00:00
license = with licenses; [ bsd3 ];
maintainers = [ maintainers.bennofs ];
};
}