mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
haskellPackages.hsimport: New expression
This commit is contained in:
parent
119257fabd
commit
04806d83a8
22
pkgs/development/libraries/haskell/hsimport/default.nix
Normal file
22
pkgs/development/libraries/haskell/hsimport/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ cabal, attoparsec, cmdargs, filepath, haskellSrcExts, lens, mtl
|
||||
, split, tasty, tastyGolden, text
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hsimport";
|
||||
version = "0.2.6.6";
|
||||
sha256 = "07zlzshg7q1gh96wqifnjanl9nfz8y4rmszmrjm7plkkpxymma4z";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
attoparsec cmdargs haskellSrcExts lens mtl split text
|
||||
];
|
||||
testDepends = [ filepath tasty tastyGolden ];
|
||||
meta = {
|
||||
description = "A command line program for extending the import list of a Haskell source file";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
||||
};
|
||||
doCheck = false;
|
||||
})
|
@ -1235,6 +1235,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
hseCpp = callPackage ../development/libraries/haskell/hse-cpp {};
|
||||
|
||||
hsimport = callPackage ../development/libraries/haskell/hsimport {};
|
||||
|
||||
HTF = callPackage ../development/libraries/haskell/HTF {};
|
||||
|
||||
HTTP_4000_0_6 = callPackage ../development/libraries/haskell/HTTP/4000.0.6.nix {};
|
||||
|
Loading…
Reference in New Issue
Block a user