gdu: enable tests and fix version output

This commit is contained in:
Fabian Affolter 2021-03-01 09:12:44 +01:00
parent 2d0b606980
commit 1711e2afd8

View file

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, buildGoModule , buildGoModule
, fetchFromGitHub , fetchFromGitHub
, installShellFiles , installShellFiles
@ -15,18 +16,26 @@ buildGoModule rec {
sha256 = "sha256-pky6YY0K4pilPcUY3sJSf4cEF10obZOHd9Jih9Igu6M="; sha256 = "sha256-pky6YY0K4pilPcUY3sJSf4cEF10obZOHd9Jih9Igu6M=";
}; };
vendorSha256 = "sha256-QiO5p0x8kmIN6f0uYS0IR2MlWtRYTHeZpW6Nmupjias="; vendorSha256 = "1aw9cgm9m3bflncpfk2qsid2aqs710nn2bpxx46n54kw9jkvj8s2";
buildFlagsArray = [ "-ldflags=-s -w -X github.com/dundee/gdu/build.Version=${version}" ];
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [ installShellFiles ];
buildFlagsArray = [
"-ldflags="
"-s"
"-w"
"-X github.com/dundee/gdu/v${lib.versions.major version}/build.Version=${version}"
];
postPatch = ''
substituteInPlace cmd/app/app_test.go --replace "development" "${version}"
'';
postInstall = '' postInstall = ''
installManPage gdu.1 installManPage gdu.1
''; '';
# tests fail if the version is set doCheck = !(stdenv.isAarch64 || stdenv.isDarwin);
doCheck = false;
meta = with lib; { meta = with lib; {
description = "Disk usage analyzer with console interface"; description = "Disk usage analyzer with console interface";