about summary refs log tree commit diff
path: root/users/Profpatsch/my-xmonad/default.nix
blob: 708d50e9608c2b3e5556a7b7827193533c831144 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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