2017-10-10 17:24:30 +01:00
|
|
|
{ fetchFromGitHub
|
|
|
|
, stdenv
|
|
|
|
, pkgconfig
|
|
|
|
, libarchive
|
|
|
|
, glib
|
|
|
|
, # Override this to use a different revision
|
|
|
|
src-spec ?
|
|
|
|
{ owner = "commercialhaskell";
|
|
|
|
repo = "all-cabal-hashes";
|
|
|
|
rev = "901c2522e6797270f5ded4495b1a529e6c16ef45";
|
|
|
|
sha256 = "05jmwsgrk77nz9vvgfbpsps0l320qgjpkr2c9zhkn9sc3d275lfb";
|
|
|
|
}
|
|
|
|
, lib
|
|
|
|
}:
|
2016-11-01 17:29:43 +00:00
|
|
|
|
|
|
|
# Use builtins.fetchTarball "https://github.com/commercialhaskell/all-cabal-hashes/archive/hackage.tar.gz"
|
|
|
|
# instead if you want the latest Hackage automatically at the price of frequent re-downloads.
|
2017-10-10 17:24:30 +01:00
|
|
|
let partition-all-cabal-hashes = stdenv.mkDerivation
|
|
|
|
{ name = "partition-all-cabal-hashes";
|
|
|
|
src = ./partition-all-cabal-hashes.c;
|
|
|
|
unpackPhase = "true";
|
2017-10-14 13:03:53 +01:00
|
|
|
buildInputs = [ libarchive glib ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-10-10 17:24:30 +01:00
|
|
|
buildPhase =
|
|
|
|
"cc -O3 $(pkg-config --cflags --libs libarchive glib-2.0) $src -o partition-all-cabal-hashes";
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -m755 partition-all-cabal-hashes $out/bin
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
in fetchFromGitHub (src-spec //
|
|
|
|
{ postFetch = "${partition-all-cabal-hashes}/bin/partition-all-cabal-hashes $downloadedFile $out";
|
|
|
|
})
|