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