summary refs log tree commit diff
path: root/pkgs/development/lisp-modules/quicklisp-to-nix-output/stumpwm.nix
blob: 20a57e86967b4914f28183e78abe6168daad3352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args @ { fetchurl, ... }:
rec {
  baseName = ''stumpwm'';
  version = ''20170227-git'';

  description = ''A tiling, keyboard driven window manager'';

  deps = [ ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/stumpwm/2017-02-27/stumpwm-20170227-git.tgz'';
    sha256 = ''0w1arw1x5hsw0w6rc1ls4bf7gf8cjcm6ar68kp74zczp0y35fign'';
  };

  overrides = x: {
  };
}