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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
809 B
Nix
Raw Normal View History

2021-02-21 10:12:54 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
2018-03-05 12:51:44 +01:00
2019-07-04 06:14:37 +02:00
buildGoModule rec {
2018-03-05 12:51:44 +01:00
pname = "powerline-go";
2021-07-20 18:39:41 +02:00
version = "unstable-2021-07-15";
2018-03-05 12:51:44 +01:00
src = fetchFromGitHub {
owner = "justjanne";
repo = pname;
2021-07-20 17:45:38 +02:00
rev = "f27435b26b5001c52ffb1aee454572c59494c81b";
sha256 = "sha256-YB/WMprjXA5ZN6baT5nWahNj0xwbP8kzS7X/1tCwWiE=";
2018-03-05 12:51:44 +01:00
};
2021-01-21 00:50:13 +01:00
vendorSha256 = "sha256-HYF6aKz+P241EKmupEoretadlrh9FBRx6nIER66jofg=";
2018-03-05 12:51:44 +01:00
doCheck = false;
meta = with lib; {
2018-03-05 12:51:44 +01:00
description = "A Powerline like prompt for Bash, ZSH and Fish";
2021-02-21 10:12:54 +01: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 12:51:44 +01:00
platforms = platforms.unix;
maintainers = with maintainers; [ sifmelcara ];
2021-10-08 21:33:25 +02:00
mainProgram = "powerline-go";
2018-03-05 12:51:44 +01:00
};
}