about summary refs log tree commit diff
path: root/pkgs/development/julia-modules/tests/julia-top-n/default.nix
blob: 9e42e19dd309badcfb4ff824f1c5b844cfe4251e (plain) (blame)
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
{ mkDerivation, aeson, base, filepath, lib, optparse-applicative
, sandwich, text, unliftio, yaml
}:
mkDerivation {
  pname = "julia-top-n";
  version = "0.1.0.0";
  src = lib.fileset.toSource {
    root = ./.;
    fileset = lib.fileset.unions [
      ./app
      ./julia-top-n.cabal
      ./package.yaml
      ./stack.yaml
      ./stack.yaml.lock
    ];
  };
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    aeson base filepath optparse-applicative sandwich text unliftio
    yaml
  ];
  license = lib.licenses.bsd3;
  mainProgram = "julia-top-n-exe";
}