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

23 lines
573 B
Nix
Raw Normal View History

2019-07-03 21:14:37 -07:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2018-03-05 03:51:44 -08:00
2019-07-03 21:14:37 -07:00
buildGoModule rec {
2018-03-05 03:51:44 -08:00
pname = "powerline-go";
2020-04-24 02:29:43 -07:00
version = "1.17.0";
2018-03-05 03:51:44 -08:00
src = fetchFromGitHub {
owner = "justjanne";
repo = pname;
2019-07-03 21:14:37 -07:00
rev = "v${version}";
2020-04-24 02:29:43 -07:00
sha256 = "135j18d53nhg6adjd2hax067c5f1py9fyprzfcr3plsxnaki2hrx";
2018-03-05 03:51:44 -08:00
};
vendorSha256 = "0dkgp9vlb76la0j439w0rb548qg5v8648zryk3rqgfhd4qywlk11";
2018-03-05 03:51:44 -08: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 ];
};
}