summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 9a423d25313de784895de192245037d1d10c2a75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  outputs = {
    self,
    nixpkgs,
  }:
    with nixpkgs.legacyPackages.x86_64-linux; {
      packages.x86_64-linux.default = stdenv.mkDerivation {
        name = "dwmstatus";
        src = ./.;
	buildInputs = [xorg.libX11.dev];
      };
      formatter.x86_64-linux = alejandra;
    };
}