mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 17:34:04 +00:00
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;
|
|
}
|