mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Added rcs
svn path=/nixpkgs/trunk/; revision=1810
This commit is contained in:
parent
eeb83adeba
commit
d6841ce1fb
10
pkgs/applications/version-management/rcs/default.nix
Normal file
10
pkgs/applications/version-management/rcs/default.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "rcs-5.7";
|
||||
# builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.cs.purdue.edu/pub/RCS/rcs-5.7.tar;
|
||||
md5 = "f7b3f106bf87ff6344df38490f6a02c5";
|
||||
};
|
||||
}
|
@ -793,6 +793,10 @@ rec {
|
||||
j2sdk = blackdown;
|
||||
};
|
||||
|
||||
rcs = (import ../applications/version-management/rcs) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
pan = (import ../applications/networking/newsreaders/pan) {
|
||||
inherit fetchurl stdenv pkgconfig gnet libxml2 perl pcre;
|
||||
inherit (gtkLibs) gtk;
|
||||
|
Loading…
Reference in New Issue
Block a user