about summary refs log tree commit diff
path: root/pkgs/openlab
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-04-23 22:36:38 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-04-23 23:08:10 +0200
commitd9ff4eb2a99c9b1c0551752cf8bf98f413f5ab8e (patch)
tree1a952667b1f1100ad68ba668916670633922df04 /pkgs/openlab
parent8fafec586ef681d4b4196a6554f55d8e27fe7477 (diff)
pkgs: Use callPackageScope wherever applicable
This should remove a lot of clutter from pkgs/default.nix into
corresponding sub-scopes, eg. pkgs/openlab/default.nix.

Apart from restructuring there is no change of runtime functionality
involved.

Tested by evaluating with "nix-env -f pkgs -qaP".

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @Profpatsch, @sternenseemann
Diffstat (limited to 'pkgs/openlab')
-rw-r--r--pkgs/openlab/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/openlab/default.nix b/pkgs/openlab/default.nix
new file mode 100644
index 00000000..328e88ed
--- /dev/null
+++ b/pkgs/openlab/default.nix
@@ -0,0 +1,6 @@
+{ callPackage, haskell }:
+
+{
+  gitit = callPackage ./gitit { hlib = haskell.lib; };
+  stackenblocken = callPackage ./stackenblocken {};
+}