tup: 0.7.9 -> 0.7.10

This commit is contained in:
Emery Hemingway 2020-10-31 11:21:04 +01:00 committed by ehmry
parent f979b589c7
commit be459ef9ff

View File

@ -1,18 +1,19 @@
{ stdenv, fetchFromGitHub, fuse, pkgconfig, pcre }: { stdenv, fetchFromGitHub, fuse3, pkgconfig, pcre }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tup"; pname = "tup";
version = "0.7.9"; version = "0.7.10";
outputs = [ "bin" "man" "out" ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "gittup"; owner = "gittup";
repo = "tup"; repo = "tup";
rev = "v${version}"; rev = "v${version}";
sha256 = "1b9rllwfdmjvfmwvzqfbqfi1flf4y9zzjmyp0dizq23gpkvhi42f"; sha256 = "1qd07h4wi0743l7z2vybfvhwp61g2p2pc5qhl40672ryl24nvd1d";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse pcre ]; buildInputs = [ fuse3 pcre ];
configurePhase = '' configurePhase = ''
sed -i 's/`git describe`/v${version}/g' src/tup/link.sh sed -i 's/`git describe`/v${version}/g' src/tup/link.sh
@ -30,11 +31,8 @@ stdenv.mkDerivation rec {
''; '';
installPhase = '' installPhase = ''
mkdir -p $out/bin install -D tup -t $bin/bin/
cp tup $out/bin/ install -D tup.1 -t $man/share/man/man1/
mkdir -p $out/share/man/man1
cp tup.1 $out/share/man/man1/
''; '';
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;