summaryrefslogtreecommitdiff
path: root/ibb/default.nix
blob: 4384001bf4453b7b1045e13c1ee7382d64ad45dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv
, mkDerivation
, base
}:

mkDerivation {
  pname = "ibb";
  version = "0";
  src = ./.;
  isExecutable = true;
  libraryHaskellDepends = [
    base
  ];
  executableHaskellDepends = [
    base
  ];
  testHaskellDepends = [
    base
  ];
  homepage = "https://git.sr.ht/~ben/biz";
  description = "biz";
  license = stdenv.lib.licenses.bsd3;
}