about summary refs log tree commit diff
path: root/pkgs/development/julia-modules/tests/julia-top-n/default.nix
blob: ab8ed948e1ea913782266e79042cabb45411f83f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, aeson, base, filepath, lib, optparse-applicative
, sandwich, text, unliftio, yaml
}:
mkDerivation {
  pname = "julia-top-n";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    aeson base filepath optparse-applicative sandwich text unliftio
    yaml
  ];
  license = lib.licenses.bsd3;
  mainProgram = "julia-top-n-exe";
}