summary refs log tree commit diff
path: root/pkgs/development/libraries/libaal/default.nix
blob: 596b8e2e84cd38ae9906d7da1c2d9a3ed2d56f9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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";
  };
}