* Splashy for showing boot splash screens. Doesn't work yet though.
svn path=/nixpkgs/trunk/; revision=7041
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
{stdenv, fetchurl, perl}:
|
||||
{ stdenv, fetchurl, perl
|
||||
, enableStaticLibraries ? true
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "directfb-1.0.0-pre-rc2";
|
||||
@@ -7,4 +9,5 @@ stdenv.mkDerivation {
|
||||
md5 = "1996c8e90075b1177b847cd594122401";
|
||||
};
|
||||
buildInputs = [perl];
|
||||
configureFlags = "${if enableStaticLibraries then "--enable-static" else ""}";
|
||||
}
|
||||
|
||||
17
pkgs/development/libraries/glib-static/default.nix
Normal file
17
pkgs/development/libraries/glib-static/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gettext, perl
|
||||
, enableStatic ? false
|
||||
}:
|
||||
|
||||
assert pkgconfig != null && gettext != null && perl != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "glib-2.10.3";
|
||||
src = fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/glib-2.10.3.tar.bz2;
|
||||
md5 = "87206e721c12d185d17dd9ecd7e30369";
|
||||
};
|
||||
buildInputs = [pkgconfig perl];
|
||||
propagatedBuildInputs = [gettext];
|
||||
configureFlags = "${if enableStatic then "--enable-static" else ""}";
|
||||
inherit enableStatic;
|
||||
}
|
||||
Reference in New Issue
Block a user