nixpkgs/pkgs/applications/misc/wtf/default.nix

42 lines
1,000 B
Nix
Raw Normal View History

2019-08-16 00:45:22 +00:00
{ buildGoModule
2018-11-20 22:13:22 +00:00
, fetchFromGitHub
, lib
, makeWrapper
, ncurses
2018-11-20 22:13:22 +00:00
}:
2019-08-16 00:45:22 +00:00
buildGoModule rec {
2019-05-26 16:23:10 +00:00
pname = "wtf";
version = "0.21.0";
2018-11-20 22:13:22 +00:00
overrideModAttrs = _oldAttrs : _oldAttrs // {
preBuild = ''export GOPROXY="https://gocenter.io"'';
};
2018-11-20 22:13:22 +00:00
src = fetchFromGitHub {
2019-05-26 16:23:10 +00:00
owner = "wtfutil";
repo = pname;
rev = "v${version}";
sha256 = "0sd8vrx7nak0by4whdmd9jzr66zm48knv1w1aqi90709fv98brm9";
2018-11-20 22:13:22 +00:00
};
modSha256 = "0jgq9ql27x0kdp59l5drisl5v7v7sx2wy3zqjbr3bqyh3vdx19ic";
2019-08-28 05:00:00 +00:00
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
2019-08-16 00:45:22 +00:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
mv "$out/bin/wtf" "$out/bin/wtfutil"
wrapProgram "$out/bin/wtfutil" --prefix PATH : "${ncurses.dev}/bin"
'';
2018-11-20 22:13:22 +00:00
meta = with lib; {
description = "The personal information dashboard for your terminal";
2019-07-16 02:49:38 +00:00
homepage = "https://wtfutil.com/";
2018-11-20 22:13:22 +00:00
license = licenses.mpl20;
maintainers = with maintainers; [ kalbasit ];
platforms = platforms.linux ++ platforms.darwin;
};
}