nixos-config/system/desktop/home-manager/xmonad/current-project.nix

13 lines
351 B
Nix
Raw Normal View History

2019-12-20 05:54:26 +01:00
# created by cabal2nix
{ mkDerivation, base, deepseq, stdenv, xmonad, xmonad-contrib, xmonad-extras }:
2019-10-24 02:20:38 +02:00
mkDerivation {
pname = "palos-xmonad";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
2019-12-20 05:54:26 +01:00
executableHaskellDepends =
[ base deepseq xmonad xmonad-contrib xmonad-extras ];
2019-10-24 02:20:38 +02:00
license = stdenv.lib.licenses.gpl3;
}