mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{ stdenv, buildGoPackage, fetchFromGitHub, go, ronn, ruby, groff, Security, utillinux }:
|
|
|
|
buildGoPackage rec {
|
|
name = "hub-${version}";
|
|
version = "2.5.0";
|
|
|
|
goPackagePath = "github.com/github/hub";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "github";
|
|
repo = "hub";
|
|
rev = "v${version}";
|
|
sha256 = "03nj3b17m700l3pib9jlzxz2vh8w54srv6x63l53sb4dff3izfsz";
|
|
};
|
|
|
|
buildInputs = [ groff ronn ruby utillinux ] ++
|
|
stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
postPatch = ''
|
|
mkdir bin
|
|
ln -s ${ronn}/bin/ronn bin/ronn
|
|
patchShebangs .
|
|
'';
|
|
|
|
postInstall = ''
|
|
cd go/src/${goPackagePath}
|
|
install -D etc/hub.zsh_completion "$bin/share/zsh/site-functions/_hub"
|
|
install -D etc/hub.bash_completion.sh "$bin/etc/bash_completion.d/hub.bash_completion.sh"
|
|
install -D etc/hub.fish_completion "$bin/share/fish/vendor_completions.d/hub.fish"
|
|
|
|
make man-pages
|
|
cp -r share/man $bin/share/man
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Command-line wrapper for git that makes you better at GitHub";
|
|
|
|
license = licenses.mit;
|
|
homepage = https://hub.github.com/;
|
|
maintainers = with maintainers; [ the-kenny ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|