0a150f97c8
Apparently, Michael Snoyman made all his code depend on an empty package just in case it turns out that the extra dependency might come in useful in the future. Go figure.
15 lines
383 B
Nix
15 lines
383 B
Nix
{ cabal }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "conduit-extra";
|
|
version = "1.0.0";
|
|
sha256 = "120c3zay8svdw3b9nqgxlrj45a1d4xf0sijkg367m7hp22szvz8a";
|
|
noHaddock = true;
|
|
meta = {
|
|
homepage = "http://github.com/snoyberg/conduit";
|
|
description = "Temporary placeholder package";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|