depot/pkgs/development/libraries/libaal/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
621 B
Nix

{ 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;
};
}