mirror of
https://github.com/simplex-chat/haskell.nix.git
synced 2026-06-03 09:17:32 +00:00
32 lines
1.0 KiB
Nix
32 lines
1.0 KiB
Nix
{ system, compiler, flags, pkgs, hsPkgs, pkgconfPkgs, ... }:
|
|
({
|
|
flags = {};
|
|
package = {
|
|
specVersion = "0";
|
|
identifier = { name = "stack-simple"; version = "0.1.0.0"; };
|
|
license = "BSD-3-Clause";
|
|
copyright = "2019 Author name here";
|
|
maintainer = "example@example.com";
|
|
author = "Author name here";
|
|
homepage = "https://github.com/githubuser/stack-simple#readme";
|
|
url = "";
|
|
synopsis = "";
|
|
description = "Please see the README on GitHub at <https://github.com/githubuser/stack-simple#readme>";
|
|
buildType = "Simple";
|
|
};
|
|
components = {
|
|
"library" = { depends = [ (hsPkgs.base) ]; };
|
|
exes = {
|
|
"stack-simple-exe" = {
|
|
depends = [ (hsPkgs.base) (hsPkgs.stack-simple) ];
|
|
};
|
|
};
|
|
tests = {
|
|
"stack-simple-test" = {
|
|
depends = [ (hsPkgs.base) (hsPkgs.stack-simple) ];
|
|
};
|
|
};
|
|
};
|
|
} // rec { src = (pkgs.lib).mkDefault ./.; }) // {
|
|
cabal-generator = "hpack";
|
|
} |