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

stdenv.mkDerivation rec {
  version = "1.0.7";
  pname = "libaal";

  src = fetchurl {
    url = "mirror://sourceforge/reiser4/${pname}-${version}.tar.gz";
    sha256 = "sha256-fIVohp2PVCaNaQRVJ4zfW8mukiiqM3BgF8Vwu9qrmJE=";
  };

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

  enableParallelBuilding = true;

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