mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
added stgit
svn path=/nixpkgs/trunk/; revision=12330
This commit is contained in:
parent
9cb86e27bb
commit
1683256259
23
pkgs/applications/version-management/stgit/default.nix
Normal file
23
pkgs/applications/version-management/stgit/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
args:
|
||||
args.stdenv.mkDerivation {
|
||||
name = "stgit-0.14.3";
|
||||
|
||||
src = args.fetchurl {
|
||||
url = http://homepage.ntlworld.com/cmarinas/stgit/stgit-0.14.3.tar.gz;
|
||||
sha256 = "13gcvz6x91m2860n26xp12j0xsshzvwij03sfzm5g3ckm18ffkw7";
|
||||
};
|
||||
|
||||
buildInputs =(with args; [python git]);
|
||||
|
||||
buildPhase = "true";
|
||||
|
||||
installPhase = "
|
||||
python ./setup.py install --prefix=$out
|
||||
";
|
||||
|
||||
meta = {
|
||||
description = "quilt for git (stacking patches)";
|
||||
homepage = http://procode.org/stgit/;
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
|
@ -6428,6 +6428,11 @@ let pkgs = rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
|
||||
stgit = import ../applications/version-management/stgit {
|
||||
inherit fetchurl stdenv python git;
|
||||
};
|
||||
|
||||
subversion = subversion14;
|
||||
|
||||
subversion14 = import ../applications/version-management/subversion-1.4.x {
|
||||
|
|
Loading…
Reference in a new issue