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

25 lines
581 B
Nix
Raw Normal View History

{ lib, 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";
2021-01-20 15:50:13 -08:00
version = "1.20.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}";
2021-01-20 15:50:13 -08:00
sha256 = "sha256-Pge57OXNE0MY2rlspVsqxdoe1r/XWjrq/q9ygdns2c8=";
2018-03-05 03:51:44 -08:00
};
2021-01-20 15:50:13 -08:00
vendorSha256 = "sha256-HYF6aKz+P241EKmupEoretadlrh9FBRx6nIER66jofg=";
2018-03-05 03:51:44 -08:00
doCheck = false;
meta = with lib; {
2018-03-05 03:51:44 -08:00
description = "A Powerline like prompt for Bash, ZSH and Fish";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ sifmelcara ];
};
}