5048b0d1f9
Added a wrapper package that creates symlinks to OpenSSL libraries with the actual versions, because we have 1.0.2 with .so-suffix .1.0.0 and cl-async-ssl is unhappy because of that. I continue to dislike cl-postgres and simple-date upstream packaging.
28 lines
1003 B
Nix
28 lines
1003 B
Nix
args @ { fetchurl, ... }:
|
|
rec {
|
|
baseName = ''stumpwm'';
|
|
version = ''20180831-git'';
|
|
|
|
description = ''A tiling, keyboard driven window manager'';
|
|
|
|
deps = [ args."alexandria" args."cl-ppcre" args."clx" ];
|
|
|
|
src = fetchurl {
|
|
url = ''http://beta.quicklisp.org/archive/stumpwm/2018-08-31/stumpwm-20180831-git.tgz'';
|
|
sha256 = ''1zis6aqdr18vd78wl9jpv2fmbzn37zvhb6gj44dpfydl67hjc89w'';
|
|
};
|
|
|
|
packageName = "stumpwm";
|
|
|
|
asdFilesToKeep = ["stumpwm.asd"];
|
|
overrides = x: x;
|
|
}
|
|
/* (SYSTEM stumpwm DESCRIPTION A tiling, keyboard driven window manager SHA256
|
|
1zis6aqdr18vd78wl9jpv2fmbzn37zvhb6gj44dpfydl67hjc89w URL
|
|
http://beta.quicklisp.org/archive/stumpwm/2018-08-31/stumpwm-20180831-git.tgz
|
|
MD5 a523654c5f7ffdfe6c6c4f37e9499851 NAME stumpwm FILENAME stumpwm DEPS
|
|
((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre)
|
|
(NAME clx FILENAME clx))
|
|
DEPENDENCIES (alexandria cl-ppcre clx) VERSION 20180831-git SIBLINGS
|
|
(stumpwm-tests) PARASITES NIL) */
|