nixpkgs/pkgs/development/tools/build-managers/goredo/default.nix
2023-09-24 17:53:20 +02:00

59 lines
1.2 KiB
Nix

{ buildGoModule
, fetchurl
, lib
, zstd
, sharness
, python3
, perl
}:
buildGoModule rec {
pname = "goredo";
version = "1.31.0";
src = fetchurl {
url = "http://www.goredo.cypherpunks.ru/download/${pname}-${version}.tar.zst";
hash = "sha256-z7u71VFMoq4VwHohMnYx/ahBSkRZHoI8MZet9gO+XVw=";
};
patches = [ ./fix-tests.diff ];
nativeBuildInputs = [ zstd ];
nativeCheckInputs = lib.optionals doCheck [ python3 perl ];
inherit (sharness) SHARNESS_TEST_SRCDIR;
vendorHash = null;
modRoot = "./src";
subPackages = [ "." ];
postBuild = ''
( cd $GOPATH/bin; ./goredo -symlinks )
cd ..
'';
doCheck = true;
checkPhase = ''
runHook preCheck
export PATH=$GOPATH/bin:$PATH
(cd t; prove -f .)
runHook postCheck
'';
postInstall = ''
mkdir -p "$out/share/info"
cp goredo.info "$out/share/info"
'';
outputs = [ "out" "info" ];
meta = with lib; {
outputsToInstall = [ "out" ];
description = "djb's redo, a system for building files from source files. Written in Go";
homepage = "https://www.goredo.cypherpunks.ru";
license = licenses.gpl3;
maintainers = [ maintainers.spacefrogg ];
};
}