mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
03b2a4dd79
see issue #43716
21 lines
433 B
Nix
21 lines
433 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "060102";
|
|
name = "fondu-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://fondu.sourceforge.net/fondu_src-${version}.tgz";
|
|
sha256 = "152prqad9jszjmm4wwqrq83zk13ypsz09n02nrk1gg0fcxfm7fr2";
|
|
};
|
|
|
|
makeFlags = "DESTDIR=$(out)";
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
};
|
|
}
|