Skip to content
Snippets Groups Projects
Commit cd36bdff authored by Daniel Firth's avatar Daniel Firth
Browse files

infer-license: init at 0.2.0

parent f9220f34
No related merge requests found
......@@ -202,6 +202,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "incipit-core" "0.3.0.0"
, callHackage "indexed-traversable" "0.1.2"
, callHackage "indexed-traversable-instances" "0.1.1.1"
, callHackage "infer-license" "0.2.0"
, callHackage "integer-logarithms" "1.0.3.1"
, callHackage "invariant" "0.6"
, callHackage "iproute" "1.7.12"
......
......@@ -231,6 +231,8 @@ final: prev: with pkgs.haskell.lib; {
indexed-traversable-instances = prev.callPackage (./pkgs/indexed-traversable-instances.nix) { };
infer-license = prev.callPackage (./pkgs/infer-license.nix) { };
integer-logarithms = prev.callPackage (./pkgs/integer-logarithms.nix) { };
invariant = prev.callPackage (./pkgs/invariant.nix) { };
......
{ mkDerivation, base, directory, filepath, hspec, lib, text
, text-metrics
}:
mkDerivation {
pname = "infer-license";
version = "0.2.0";
sha256 = "12e6fe616575159c03cf6fd4a4f30021ecf264a529ab4e4edd6e96e296a98e72";
libraryHaskellDepends = [
base directory filepath text text-metrics
];
testHaskellDepends = [
base directory filepath hspec text text-metrics
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
description = "Infer software license from a given license file";
license = lib.licenses.mit;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment