3
0
Fork 0
forked from mirrors/nixpkgs

haskell-packunused: add version 0.1.0.0

This commit is contained in:
Peter Simons 2013-02-27 12:00:37 +01:00
parent 566d5d3fb5
commit 55b67195d4
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{ cabal, Cabal, cmdargs, filepath, haskellSrcExts }:
cabal.mkDerivation (self: {
pname = "packunused";
version = "0.1.0.0";
sha256 = "131x99id3jcxglj24p5sjb6mnhphj925pp4jdjy09y6ai7wss3rs";
isLibrary = false;
isExecutable = true;
buildDepends = [ Cabal cmdargs filepath haskellSrcExts ];
meta = {
homepage = "https://github.com/hvr/packunused";
description = "Tool for detecting redundant Cabal package dependencies";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2093,6 +2093,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
myhasktags = callPackage ../tools/misc/myhasktags {};
packunused = callPackage ../development/tools/haskell/packunused {};
splot = callPackage ../development/tools/haskell/splot {};
timeplot = callPackage ../development/tools/haskell/timeplot {};