bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
24 lines
693 B
Nix
24 lines
693 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libowfat";
|
|
version = "0.32";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.fefe.de/libowfat/${pname}-${version}.tar.xz";
|
|
sha256 = "1hcqg7pvy093bxx8wk7i4gvbmgnxz2grxpyy7b4mphidjbcv7fgl";
|
|
};
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "A GPL reimplementation of libdjb";
|
|
homepage = "https://www.fefe.de/libowfat/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
# Doesn't build with glibc 2.34: https://hydra.nixos.org/build/156248131
|
|
# Should be fixed with the next release: https://bugs.gentoo.org/806505
|
|
broken = true;
|
|
};
|
|
}
|