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

hslua-module-version: init at 1.0.3

parent 0dcea490
No related merge requests found
......@@ -272,6 +272,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hslua-classes" "2.2.0"
, callHackage "hslua-marshalling" "2.2.1"
, callHackage "hslua-module-text" "1.0.2"
, callHackage "hslua-module-version" "1.0.3"
, callHackage "hslua-objectorientation" "2.2.1"
, callHackage "hslua-packaging" "2.2.1"
, callHackage "hslua" "2.2.1"
......
......@@ -317,6 +317,8 @@ final: prev: with pkgs.haskell.lib; {
hslua-module-text = prev.callPackage (./pkgs/hslua-module-text.nix) { };
hslua-module-version = prev.callPackage (./pkgs/hslua-module-version.nix) { };
hslua-objectorientation = prev.callPackage (./pkgs/hslua-objectorientation.nix) { };
hslua-packaging = prev.callPackage (./pkgs/hslua-packaging.nix) { };
......
{ mkDerivation
, base
, filepath
, hslua-core
, hslua-marshalling
, hslua-packaging
, lib
, tasty
, tasty-hunit
, tasty-lua
, text
}:
mkDerivation {
pname = "hslua-module-version";
version = "1.0.3";
sha256 = "c519b28f5dabf8f0137a3dbb589847bf6a73ad2ea210cc14045feda7d6a244ec";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
filepath
hslua-core
hslua-marshalling
hslua-packaging
text
];
testHaskellDepends = [
base
filepath
hslua-core
hslua-marshalling
hslua-packaging
tasty
tasty-hunit
tasty-lua
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://hslua.org/";
description = "Lua module to work with version specifiers";
license = lib.licenses.mit;
broken = false;
}
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