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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1 KiB
Nix
Raw Normal View History

2019-08-16 02:45:22 +02:00
{ buildGoModule
2018-11-20 23:13:22 +01:00
, fetchFromGitHub
, lib
, makeWrapper
, ncurses
, stdenv
2018-11-20 23:13:22 +01:00
}:
2019-08-16 02:45:22 +02:00
buildGoModule rec {
2019-05-26 18:23:10 +02:00
pname = "wtf";
2022-10-10 00:12:05 +02:00
version = "0.42.0";
2018-11-20 23:13:22 +01:00
src = fetchFromGitHub {
2019-05-26 18:23:10 +02:00
owner = "wtfutil";
repo = pname;
rev = "v${version}";
2022-10-10 00:12:05 +02:00
sha256 = "sha256-6dSKambBAi1JHVyhq9xBUx5X6QmjsZCV8lENB55Wzto=";
};
2018-11-20 23:13:22 +01:00
2022-10-10 00:12:05 +02:00
vendorSha256 = "sha256-Qe+u0u/NBXpEDvfKAF50Uxu5rh8BLa7N0wJ4bEuKOps=";
2019-08-28 07:00:00 +02:00
doCheck = false;
2021-08-26 08:45:51 +02:00
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
2019-08-16 02:45:22 +02:00
subPackages = [ "." ];
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
mv "$out/bin/wtf" "$out/bin/wtfutil"
wrapProgram "$out/bin/wtfutil" --prefix PATH : "${ncurses.dev}/bin"
'';
meta = with lib; {
2018-11-20 23:13:22 +01:00
description = "The personal information dashboard for your terminal";
2019-07-16 04:49:38 +02:00
homepage = "https://wtfutil.com/";
changelog = "https://github.com/wtfutil/wtf/raw/v${version}/CHANGELOG.md";
2018-11-20 23:13:22 +01:00
license = licenses.mpl20;
maintainers = with maintainers; [ kalbasit ];
mainProgram = "wtfutil";
2018-11-20 23:13:22 +01:00
platforms = platforms.linux ++ platforms.darwin;
broken = stdenv.isDarwin;
2018-11-20 23:13:22 +01:00
};
2020-05-29 16:01:29 +02:00
}