depot/third_party/nixpkgs/pkgs/test/haskell/cabalSdist/local/generated.nix

13 lines
293 B
Nix
Raw Normal View History

# 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;
}