nixpkgs-update/nixpkgs-update.nix

36 lines
1.5 KiB
Nix
Raw Normal View History

2019-09-04 18:47:05 +03:00
{ mkDerivation, aeson, base, bytestring, conduit, containers
, cryptohash-sha256, directory, doctest, errors, filepath, github
, hex, hpack, http-conduit, iso8601-time, lifted-base, mtl
, neat-interpolation, optparse-applicative, parsec, parsers
2019-09-04 18:47:05 +03:00
, polysemy, regex-applicative-text, shelly, stdenv
, template-haskell, text, time, transformers, typed-process, unix
, vector, xdg-basedir, zlib
}:
mkDerivation {
pname = "nixpkgs-update";
version = "0.2.0";
src = ./.;
isLibrary = false;
isExecutable = true;
libraryToolDepends = [ hpack ];
executableHaskellDepends = [
2019-09-04 18:47:05 +03:00
aeson base bytestring conduit containers cryptohash-sha256
directory errors filepath github hex http-conduit iso8601-time
lifted-base mtl neat-interpolation optparse-applicative parsec
2019-09-04 18:47:05 +03:00
parsers polysemy regex-applicative-text shelly template-haskell
text time transformers typed-process unix vector xdg-basedir zlib
];
testHaskellDepends = [
2019-09-04 18:47:05 +03:00
aeson base bytestring conduit containers cryptohash-sha256
directory doctest errors filepath github hex http-conduit
iso8601-time lifted-base mtl neat-interpolation
optparse-applicative parsec parsers polysemy regex-applicative-text
shelly template-haskell text time transformers typed-process unix
vector xdg-basedir zlib
];
2019-09-04 18:47:05 +03:00
prePatch = "hpack";
homepage = "https://github.com/ryantm/nixpkgs-update#readme";
description = "Tool for semi-automatic updating of nixpkgs repository";
2019-09-04 18:47:05 +03:00
license = stdenv.lib.licenses.cc0;
}