clpm: 0.3.5 -> 0.3.6 (#112901)

authored by Petter S. Storvik and committed by GitHub 26256141 6408a8f4

+12 -3
+12 -3
pkgs/development/tools/clpm/default.nix
··· 1 - { lib, stdenv 2 , fetchgit 3 , wrapLisp 4 , sbcl ··· 7 8 stdenv.mkDerivation rec { 9 pname = "clpm"; 10 - version = "0.3.5"; 11 12 src = fetchgit { 13 url = "https://gitlab.common-lisp.net/clpm/clpm"; 14 rev = "v${version}"; 15 fetchSubmodules = true; 16 - sha256 = "0jivnnp3z148yf4c2nzzr5whz76w5kjhsb97z2vs5maiwf79y2if"; 17 }; 18 19 buildInputs = [ ··· 22 ]; 23 24 buildPhase = '' 25 ln -s ${openssl.out}/lib/libcrypto.so.* . 26 ln -s ${openssl.out}/lib/libssl.so.* . 27 common-lisp.sh --script scripts/build.lisp 28 ''; 29 30 installPhase = '' 31 INSTALL_ROOT=$out sh install.sh 32 ''; 33 34 # fixupPhase results in fatal error in SBCL, `Can't find sbcl.core`
··· 1 + { lib 2 + , stdenv 3 , fetchgit 4 , wrapLisp 5 , sbcl ··· 8 9 stdenv.mkDerivation rec { 10 pname = "clpm"; 11 + version = "0.3.6"; 12 13 src = fetchgit { 14 url = "https://gitlab.common-lisp.net/clpm/clpm"; 15 rev = "v${version}"; 16 fetchSubmodules = true; 17 + sha256 = "04w46yhv31p4cfb84b6qvyfw7x5nx6lzyd4yzhd9x6qvb7p5kmfh"; 18 }; 19 20 buildInputs = [ ··· 23 ]; 24 25 buildPhase = '' 26 + runHook preBuild 27 + 28 ln -s ${openssl.out}/lib/libcrypto.so.* . 29 ln -s ${openssl.out}/lib/libssl.so.* . 30 common-lisp.sh --script scripts/build.lisp 31 + 32 + runHook postBuild 33 ''; 34 35 installPhase = '' 36 + runHook preInstall 37 + 38 INSTALL_ROOT=$out sh install.sh 39 + 40 + runHook postInstall 41 ''; 42 43 # fixupPhase results in fatal error in SBCL, `Can't find sbcl.core`