X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=blobdiff_plain;f=pkgs%2Fopenarc%2Fdefault.nix;fp=pkgs%2Fopenarc%2Fdefault.nix;h=0000000000000000000000000000000000000000;hp=e5c9a81c0c3a6465940c248b7d120c3e57dad9d2;hb=0ba91bdd57fd6b08f00197d65cd298c317aa164f;hpb=e8864bbff33f33b1de4929037a81368263c5475b diff --git a/pkgs/openarc/default.nix b/pkgs/openarc/default.nix deleted file mode 100644 index e5c9a81..0000000 --- a/pkgs/openarc/default.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ stdenv, autoconf, automake, file, libtool, libbsd, mylibs, openssl, pkg-config, libmilter }: - -stdenv.mkDerivation (mylibs.fetchedGithub ./openarc.json // rec { - buildInputs = [ automake autoconf libbsd libtool openssl pkg-config libmilter ]; - - configureFlags = [ - "--with-milter=${libmilter}" - ]; - preConfigure = '' - autoreconf --force --install - sed -i -e "s@/usr/bin/file@${file}/bin/file@" ./configure - ''; - meta = with stdenv.lib; { - description = "Open source ARC implementation"; - homepage = https://github.com/trusteddomainproject/OpenARC; - platforms = platforms.unix; - }; -})