nixpkgs/pkgs/development/tools/fac/default.nix

36 lines
822 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, git }:
2018-01-02 16:25:45 +00:00
2018-05-16 16:07:43 +00:00
buildGoPackage rec {
pname = "fac";
version = "2.0.0";
2018-01-02 16:25:45 +00:00
goPackagePath = "github.com/mkchoi212/fac";
src = fetchFromGitHub {
owner = "mkchoi212";
repo = "fac";
rev = "v${version}";
sha256 = "054bbiw0slz9szy3ap2sh5dy97w3g7ms27rd3ww3i1zdhvnggwpc";
2018-01-02 16:25:45 +00:00
};
2018-05-16 16:07:43 +00:00
goDeps = ./deps.nix;
2018-01-02 16:25:45 +00:00
nativeBuildInputs = [ makeWrapper ];
postInstall = ''
wrapProgram $bin/bin/fac \
--prefix PATH : ${git}/bin
2018-01-27 00:20:29 +00:00
2018-05-16 16:07:43 +00:00
# Install man page, not installed by default
install -D go/src/${goPackagePath}/assets/doc/fac.1 $out/share/man/man1/fac.1
2018-01-02 16:25:45 +00:00
'';
meta = with stdenv.lib; {
description = "CUI for fixing git conflicts";
inherit (src.meta) homepage;
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}