nixpkgs-suyu/pkgs/tools/filesystems/reiserfsprogs/default.nix
Artturin f9fdf2d402 treewide: move NIX_CFLAGS_COMPILE to the env attrset
with structuredAttrs lists will be bash arrays which cannot be exported
which will be a issue with some patches and some wrappers like cc-wrapper

this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists
in env cause a eval failure
2023-02-22 21:23:04 +02:00

25 lines
722 B
Nix

{ lib, stdenv, fetchurl, libuuid, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "reiserfsprogs";
version = "3.6.24";
src = fetchurl {
url = "https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/${pname}-${version}.tar.xz";
sha256 = "0q07df9wxxih8714a3mdp61h5n347l7j2a0l351acs3xapzgwi3y";
};
patches = [ ./reiserfsprogs-ar-fix.patch ];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libuuid ];
env.NIX_CFLAGS_COMPILE = toString [ "-std=gnu90" "-D_GNU_SOURCE" ];
meta = {
inherit version;
homepage = "http://www.namesys.com/";
description = "ReiserFS utilities";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
};
}