nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-beta 25 lines 621 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 version = "1.0.7"; 5 pname = "libaal"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/reiser4/${pname}-${version}.tar.gz"; 9 sha256 = "sha256-fIVohp2PVCaNaQRVJ4zfW8mukiiqM3BgF8Vwu9qrmJE="; 10 }; 11 12 preInstall = '' 13 substituteInPlace Makefile --replace ./run-ldconfig true 14 ''; 15 16 enableParallelBuilding = true; 17 18 meta = { 19 homepage = "http://www.namesys.com/"; 20 description = "Support library for Reiser4"; 21 license = lib.licenses.gpl2; 22 maintainers = with lib.maintainers; [ mglolenstine ]; 23 platforms = with lib.platforms; linux; 24 }; 25}