forked from ierton/haskdogs
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdefault.nix
37 lines (30 loc) · 1.11 KB
/
default.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ nixpkgs ? import <nixpkgs> {}, compiler ? "default" }:
let
inherit (nixpkgs) pkgs;
f = { mkDerivation, base, bytestring, containers, directory
, filepath, optparse-applicative, process-extras, stdenv, text,
cabal-install, hasktags, unliftio, fast-logger
}:
mkDerivation {
pname = "haskdogs";
version = "0.4.5";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base bytestring containers directory filepath optparse-applicative
process-extras text hasktags unliftio fast-logger
];
libraryHaskellDepends = [
cabal-install
];
homepage = "http://github.com/grwlf/haskdogs";
description = "Generate tags file for Haskell project and its nearest deps";
license = stdenv.lib.licenses.bsd3;
};
haskellPackages = if compiler == "default"
then pkgs.haskellPackages
else pkgs.haskell.packages.${compiler};
drv = haskellPackages.callPackage f {};
in
if pkgs.lib.inNixShell then drv.env else drv