mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-15 14:09:17 +03:00
Adding rapidsvn
svn path=/nixpkgs/trunk/; revision=20538
This commit is contained in:
parent
013ead070a
commit
57ea53f67a
2 changed files with 26 additions and 0 deletions
22
pkgs/applications/version-management/rapidsvn/default.nix
Normal file
22
pkgs/applications/version-management/rapidsvn/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{stdenv, fetchurl, wxGTK, subversion, apr, aprutil, python}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "rapidsvn-0.12";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://www.rapidsvn.org/download/release/0.12/rapidsvn-0.12.0-1.tar.gz;
|
||||||
|
sha256 = "1i3afjmx99ljw1bj54q47fs0g1q9dmxxvr4ciq7ncp5s52shszgg";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ wxGTK subversion apr aprutil python ];
|
||||||
|
|
||||||
|
configureFlags = [ "--with-svn-include=${subversion}/include"
|
||||||
|
"--with-svn-lib=${subversion}/lib" ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Multi-platform GUI front-end for the Subversion revision system";
|
||||||
|
homepage = http://rapidsvn.tigris.org/;
|
||||||
|
license = "GPLv3+";
|
||||||
|
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7960,6 +7960,10 @@ let
|
||||||
openexr = openexr_1_6_1;
|
openexr = openexr_1_6_1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rapidsvn = import ../applications/version-management/rapidsvn {
|
||||||
|
inherit fetchurl stdenv wxGTK subversion apr aprutil python;
|
||||||
|
};
|
||||||
|
|
||||||
ratpoison = import ../applications/window-managers/ratpoison {
|
ratpoison = import ../applications/window-managers/ratpoison {
|
||||||
inherit fetchurl stdenv fontconfig readline pkgconfig autoconf automake;
|
inherit fetchurl stdenv fontconfig readline pkgconfig autoconf automake;
|
||||||
inherit (xlibs) libX11 inputproto libXt libXpm libXft
|
inherit (xlibs) libX11 inputproto libXt libXpm libXft
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue