nixpkgs/pkgs/tools/misc/powerline-go/default.nix

22 lines
572 B
Nix
Raw Normal View History

2019-07-04 05:14:37 +01:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2018-03-05 11:51:44 +00:00
2019-07-04 05:14:37 +01:00
buildGoModule rec {
2018-03-05 11:51:44 +00:00
pname = "powerline-go";
2020-04-24 10:29:43 +01:00
version = "1.17.0";
2018-03-05 11:51:44 +00:00
src = fetchFromGitHub {
owner = "justjanne";
repo = pname;
2019-07-04 05:14:37 +01:00
rev = "v${version}";
2020-04-24 10:29:43 +01:00
sha256 = "135j18d53nhg6adjd2hax067c5f1py9fyprzfcr3plsxnaki2hrx";
2018-03-05 11:51:44 +00:00
};
vendorSha256 = "0dkgp9vlb76la0j439w0rb548qg5v8648zryk3rqgfhd4qywlk11";
2018-03-05 11:51:44 +00:00
meta = with stdenv.lib; {
description = "A Powerline like prompt for Bash, ZSH and Fish";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ sifmelcara ];
};
}