tvl-depot/users/Profpatsch/my-xmonad/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
468 B
Nix
Raw Normal View History

{ depot, pkgs, lib, ... }:
let
# bins = depot.nix.getBins pkgs.sqlite ["sqlite3"];
my-xmonad = pkgs.haskellPackages.mkDerivation {
pname = "my-xmonad";
version = "0.1.0";
src = depot.users.Profpatsch.exactSource ./. [
./my-xmonad.cabal
./Xmonad.hs
];
libraryHaskellDepends = [
pkgs.haskellPackages.xmonad-contrib
];
isExecutable = true;
isLibrary = false;
license = lib.licenses.mit;
};
in
my-xmonad