scmpuff: init at 0.3.0
scmpuff is tool to make working with git easier by making it possible to refer to filenames using numeric shortcuts
This commit is contained in:
committed by
worldofpeace
parent
89424e142e
commit
9c2ffc5834
@@ -0,0 +1,24 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "scmpuff";
|
||||
version = "0.3.0";
|
||||
goPackagePath = "github.com/mroth/scmpuff";
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mroth";
|
||||
repo = pname;
|
||||
rev = "56dc2041f2c45ab15d41e63058c1c44fff905e81";
|
||||
sha256 = "0zrzzcs0i13pfwcqh8qb0sji54vh37rdr7qasg57y56cqpx16vl3";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Add numbered shortcuts to common git commands";
|
||||
homepage = "https://github.com/mroth/scmpuff";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ cpcloud ];
|
||||
platforms = concatLists (with platforms; [ linux darwin windows ]);
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user