about summary refs log tree commit diff
path: root/pkgs/test/haskell/cabalSdist/local/generated.nix
blob: bfa299962bcb498f4eb371aeccb1b717ac7e1fff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# nix run ../../../../..#cabal2nix -- ./.
{ mkDerivation, base, lib }:
mkDerivation {
  pname = "local";
  version = "0.1.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [ base ];
  description = "Nixpkgs test case";
  license = lib.licenses.mit;
}