mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
wtf: init at 0.4.0
This commit is contained in:
parent
0e98312b72
commit
46a652e7e3
28
pkgs/applications/misc/wtf/default.nix
Normal file
28
pkgs/applications/misc/wtf/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ buildGoPackage
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "wtf-${version}";
|
||||
version = "0.4.0";
|
||||
|
||||
goPackagePath = "github.com/senorprogrammer/wtf";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "senorprogrammer";
|
||||
repo = "wtf";
|
||||
rev = "${version}";
|
||||
sha256 = "1vgjqmw27baiq9brmnafic3w3hw11p5qc6ahbdxi5n5n4bx7j6vn";
|
||||
};
|
||||
|
||||
buildFlagsArray = [ "-ldflags=" "-X main.version=${version}" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "The personal information dashboard for your terminal";
|
||||
homepage = http://wtfutil.com/;
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
@ -22868,6 +22868,8 @@ with pkgs;
|
||||
|
||||
zimg = callPackage ../development/libraries/zimg { };
|
||||
|
||||
wtf = callPackage ../applications/misc/wtf { };
|
||||
|
||||
zk-shell = callPackage ../applications/misc/zk-shell { };
|
||||
|
||||
zuki-themes = callPackage ../misc/themes/zuki { };
|
||||
|
Loading…
Reference in New Issue
Block a user