13 lines
293 B
Nix
13 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;
|
||
|
}
|