summaryrefslogtreecommitdiff
path: root/pkgs/nomsring/default.nix
blob: c7ad358649954227b9af0f90db2d3996ba07cce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ mkDerivation, base, cgi, data-clist, lib }:
mkDerivation {
  pname = "nomsring";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base cgi data-clist ];
  description = "noms noms";
  license = lib.licenses.bsd3;
  mainProgram = "nomsring";
}