mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
35 lines
931 B
Nix
35 lines
931 B
Nix
{ stdenv, fetchFromGitHub, rakudo, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zef";
|
|
version = "0.8.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ugexe";
|
|
repo = "zef";
|
|
rev = "v${version}";
|
|
sha256 = "17a5ns0ph8626q3b4wv9v2n0zqmhqbqyzjzxa387kr19qs933yy6";
|
|
};
|
|
|
|
buildInputs = [ rakudo makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out"
|
|
# TODO: Find better solution. zef stores cache stuff in $HOME with the
|
|
# default config.
|
|
env HOME=$TMPDIR ${rakudo}/bin/raku -I. ./bin/zef --/depends --/test-depends --/build-depends --install-to=$out install .
|
|
'';
|
|
|
|
postFixup =''
|
|
wrapProgram $out/bin/zef --prefix RAKUDOLIB , "inst#$out"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Raku / Perl6 Module Management";
|
|
homepage = "https://github.com/ugexe/zef";
|
|
license = licenses.artistic2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ sgo ];
|
|
};
|
|
}
|