summary refs log tree commit diff
path: root/pkgs/development/libraries/libaal/default.nix
blob: 36d1ddc715166f793cc81c42da0c905e66977e43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  version = "1.0.6";
  name = "libaal-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/reiser4/${name}.tar.gz";
    sha256 = "176f2sns6iyxv3h9zyirdinjwi05gdak48zqarhib2s38rvm98di";
  };

  preInstall = ''
    substituteInPlace Makefile --replace ./run-ldconfig true
  '';

  meta = {
    homepage = http://www.namesys.com/;
    description = "Support library for Reiser4";
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
  };
}