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

30 lines
775 B
Nix
Raw Normal View History

2021-02-21 09:12:54 +00:00
{ lib
, 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";
2021-07-20 17:39:41 +01:00
version = "unstable-2021-07-15";
2018-03-05 11:51:44 +00:00
src = fetchFromGitHub {
owner = "justjanne";
repo = pname;
2021-07-20 16:45:38 +01:00
rev = "f27435b26b5001c52ffb1aee454572c59494c81b";
sha256 = "sha256-YB/WMprjXA5ZN6baT5nWahNj0xwbP8kzS7X/1tCwWiE=";
2018-03-05 11:51:44 +00:00
};
2021-01-20 23:50:13 +00:00
vendorSha256 = "sha256-HYF6aKz+P241EKmupEoretadlrh9FBRx6nIER66jofg=";
2018-03-05 11:51:44 +00:00
doCheck = false;
meta = with lib; {
2018-03-05 11:51:44 +00:00
description = "A Powerline like prompt for Bash, ZSH and Fish";
2021-02-21 09:12:54 +00:00
homepage = "https://github.com/justjanne/powerline-go";
changelog = "https://github.com/justjanne/powerline-go/releases/tag/v${version}";
license = licenses.gpl3Plus;
2018-03-05 11:51:44 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ sifmelcara ];
};
}