mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
* Add libXtst and recordext from xlibs CVS.
svn path=/nixpkgs/trunk/; revision=4033
This commit is contained in:
parent
7112b86997
commit
f5a877c2a6
@ -98,4 +98,11 @@ rec {
|
||||
inherit stdenv libX11 libXt freetype fontconfig libXft libXext;
|
||||
};
|
||||
|
||||
recordext = (import ./recordext) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
libXtst = (import ./libXtst) {
|
||||
inherit fetchurl stdenv pkgconfig libX11 libXext recordext libXtrans;
|
||||
};
|
||||
}
|
||||
|
10
pkgs/development/libraries/xlibs/libXtst/default.nix
Normal file
10
pkgs/development/libraries/xlibs/libXtst/default.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl, pkgconfig, libX11, libXext, recordext, libXtrans}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libXtst-6.2.2-cvs";
|
||||
src = fetchurl {
|
||||
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/libXtst-6.2.2.tar.bz2;
|
||||
md5 = "6ee58bdcb151f1eccc761262f737e7d3";
|
||||
};
|
||||
buildInputs = [pkgconfig libX11 libXext recordext libXtrans];
|
||||
}
|
9
pkgs/development/libraries/xlibs/recordext/default.nix
Normal file
9
pkgs/development/libraries/xlibs/recordext/default.nix
Normal file
@ -0,0 +1,9 @@
|
||||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "recordext-1.13-cvs";
|
||||
src = fetchurl {
|
||||
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/recordext-1.13.tar.bz2;
|
||||
md5 = "dcb2519a76ce238507e777bd79b67ab5";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user