ca5ab3a501
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
12 lines
293 B
Nix
12 lines
293 B
Nix
# 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;
|
|
}
|