3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/package-management/nix-template/default.nix

40 lines
1,009 B
Nix
Raw Normal View History

2021-07-11 23:51:54 +01:00
{ lib, stdenv, rustPlatform, fetchFromGitHub
, makeWrapper
, nix
, openssl
, pkg-config
, Security
}:
2020-08-31 01:47:31 +01:00
rustPlatform.buildRustPackage rec {
pname = "nix-template";
2021-07-11 23:51:54 +01:00
version = "0.1.1";
2020-08-31 01:47:31 +01:00
src = fetchFromGitHub {
owner = "jonringer";
repo = pname;
rev = "v${version}";
2021-07-11 23:51:54 +01:00
sha256 = "sha256-A1b/fgSr27sfMDnTi4R3PUZfhAdLA5wUOd4yh9/4Bnk=";
2020-08-31 01:47:31 +01:00
};
2021-07-11 23:51:54 +01:00
cargoSha256 = "sha256-resyY/moqLo4KWOKUvFJiOWealCmcEsLFgkN12slKN0=";
nativeBuildInputs = [ makeWrapper pkg-config ];
buildInputs = [ openssl ]
++ lib.optional stdenv.isDarwin Security;
# needed for nix-prefetch-url
postInstall = ''
wrapProgram $out/bin/nix-template \
--prefix PATH : ${lib.makeBinPath [ nix ]}
'';
2020-08-31 01:47:31 +01:00
meta = with lib; {
description = "Make creating nix expressions easy";
homepage = "https://github.com/jonringer/nix-template/";
changelog = "https://github.com/jonringer/nix-template/releases/tag/v${version}";
license = licenses.cc0;
maintainers = with maintainers; [ jonringer ];
};
}