summary refs log tree commit diff
path: root/pkgs/development/libraries/gamin
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-04-21 23:18:09 +0000
commit94d7d1fdbbb80718ff369389c1230ed77a4f7577 (patch)
treee6b513aa6e9bf61bcabcbfdfe7cd8f0dd052893f /pkgs/development/libraries/gamin
parent2a699fe5fb15cd68473f59d986059bdb92228b75 (diff)
downloadnixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.gz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.bz2
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.lz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.xz
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.tar.zst
nixpkgs-94d7d1fdbbb80718ff369389c1230ed77a4f7577.zip
* Got rid of all --disable-static flags; they're redundant now.
* Also a bunch of style cleanups (tabs, with args, ...).

svn path=/nixpkgs/branches/stdenv-updates/; revision=15235
Diffstat (limited to 'pkgs/development/libraries/gamin')
-rw-r--r--pkgs/development/libraries/gamin/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/development/libraries/gamin/default.nix b/pkgs/development/libraries/gamin/default.nix
index f8c44fc0a08..79356b31b7e 100644
--- a/pkgs/development/libraries/gamin/default.nix
+++ b/pkgs/development/libraries/gamin/default.nix
@@ -1,16 +1,16 @@
 args: with args;
+
 stdenv.mkDerivation rec {
-	name = "gamin-0.1.9";
+  name = "gamin-0.1.9";
 
-	src = fetchurl {
-		url = "http://www.gnome.org/~veillard/gamin/sources/${name}.tar.gz";
-		sha256 = "0fgjfyr0nlkpdxj94a4qfm82wypljdyv1b6l56v7i9jdx0hcdqhr";
-	};
+  src = fetchurl {
+    url = "http://www.gnome.org/~veillard/gamin/sources/${name}.tar.gz";
+    sha256 = "0fgjfyr0nlkpdxj94a4qfm82wypljdyv1b6l56v7i9jdx0hcdqhr";
+  };
 
-	buildInputs = [python pkgconfig glib];
+  buildInputs = [python pkgconfig glib];
 
-        # `_GNU_SOURCE' is needed, e.g., to get `struct ucred' from
-        # <sys/socket.h> with Glibc 2.9.
-	configureFlags = "--enable-shared --disable-static --disable-debug"
-          + " --with-python=${python} CPPFLAGS=-D_GNU_SOURCE";
+  # `_GNU_SOURCE' is needed, e.g., to get `struct ucred' from
+  # <sys/socket.h> with Glibc 2.9.
+  configureFlags = "--disable-debug --with-python=${python} CPPFLAGS=-D_GNU_SOURCE";
 }