wtf: init at 0.4.0

This commit is contained in:
Wael M. Nasreddine 2018-11-20 14:13:22 -08:00
parent 0e98312b72
commit 46a652e7e3
No known key found for this signature in database
GPG key ID: 82AE0A31B33CEFCF
2 changed files with 30 additions and 0 deletions

View 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;
};
}

View file

@ -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 { };