summary refs log tree commit diff
path: root/pkgs/development/libraries/libaal
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-02-04 14:37:15 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-02-04 14:37:15 +0000
commit9f2711c674beff2b67e86ff8fa9f19f670256cfc (patch)
tree54ee62e2b3556b1b0ec050b7986439948cd87e7c /pkgs/development/libraries/libaal
parent7cc6713bdde1d9bdb51ebb70827c84ad42c294ca (diff)
downloadnixpkgs-9f2711c674beff2b67e86ff8fa9f19f670256cfc.tar
nixpkgs-9f2711c674beff2b67e86ff8fa9f19f670256cfc.tar.gz
nixpkgs-9f2711c674beff2b67e86ff8fa9f19f670256cfc.tar.bz2
nixpkgs-9f2711c674beff2b67e86ff8fa9f19f670256cfc.tar.lz
nixpkgs-9f2711c674beff2b67e86ff8fa9f19f670256cfc.tar.xz
nixpkgs-9f2711c674beff2b67e86ff8fa9f19f670256cfc.tar.zst
nixpkgs-9f2711c674beff2b67e86ff8fa9f19f670256cfc.zip
* Reiser4 stuff.
svn path=/nixpkgs/trunk/; revision=10498
Diffstat (limited to 'pkgs/development/libraries/libaal')
-rw-r--r--pkgs/development/libraries/libaal/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libaal/default.nix b/pkgs/development/libraries/libaal/default.nix
new file mode 100644
index 00000000000..596b8e2e84c
--- /dev/null
+++ b/pkgs/development/libraries/libaal/default.nix
@@ -0,0 +1,19 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "libaal-1.0.5";
+
+  src = fetchurl {
+    url = http://chichkin_i.zelnet.ru/namesys/libaal-1.0.5.tar.gz;
+    sha256 = "109f464hxwms90mpczc7h7lmrdlcmlglabkzh86h25xrlxxdn6pz";
+  };
+
+  preInstall = ''
+    substituteInPlace Makefile --replace ./run-ldconfig true
+  '';
+
+  meta = {
+    homepage = http://www.namesys.com/;
+    description = "Support library for Reiser4";
+  };
+}