tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
lispPackages.xembed: init
Michael Raskin
8 years ago
ea299bdc
025e1a3b
+35
3 changed files
expand all
collapse all
unified
split
pkgs
development
lisp-modules
quicklisp-to-nix-output
xembed.nix
quicklisp-to-nix-systems.txt
quicklisp-to-nix.nix
+25
pkgs/development/lisp-modules/quicklisp-to-nix-output/xembed.nix
···
1
1
+
args @ { fetchurl, ... }:
2
2
+
rec {
3
3
+
baseName = ''xembed'';
4
4
+
version = ''clx-20120909-git'';
5
5
+
6
6
+
description = '''';
7
7
+
8
8
+
deps = [ args."clx" ];
9
9
+
10
10
+
src = fetchurl {
11
11
+
url = ''http://beta.quicklisp.org/archive/clx-xembed/2012-09-09/clx-xembed-20120909-git.tgz'';
12
12
+
sha256 = ''06h2md0lb0sribpkg5k7z7fnc02k0ssaswcimg2ya8wqypj4rlbb'';
13
13
+
};
14
14
+
15
15
+
packageName = "xembed";
16
16
+
17
17
+
asdFilesToKeep = ["xembed.asd"];
18
18
+
overrides = x: x;
19
19
+
}
20
20
+
/* (SYSTEM xembed DESCRIPTION NIL SHA256
21
21
+
06h2md0lb0sribpkg5k7z7fnc02k0ssaswcimg2ya8wqypj4rlbb URL
22
22
+
http://beta.quicklisp.org/archive/clx-xembed/2012-09-09/clx-xembed-20120909-git.tgz
23
23
+
MD5 4270362697093017ac0243b71e3576f9 NAME xembed FILENAME xembed DEPS
24
24
+
((NAME clx FILENAME clx)) DEPENDENCIES (clx) VERSION clx-20120909-git
25
25
+
SIBLINGS NIL PARASITES NIL) */
+1
pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
···
57
57
cl-who
58
58
clx
59
59
clx-truetype
60
60
+
xembed
60
61
command-line-arguments
61
62
css-lite
62
63
css-selectors
+9
pkgs/development/lisp-modules/quicklisp-to-nix.nix
···
1920
1920
}));
1921
1921
1922
1922
1923
1923
+
"xembed" = buildLispPackage
1924
1924
+
((f: x: (x // (f x)))
1925
1925
+
(qlOverrides."xembed" or (x: {}))
1926
1926
+
(import ./quicklisp-to-nix-output/xembed.nix {
1927
1927
+
inherit fetchurl;
1928
1928
+
"clx" = quicklisp-to-nix-packages."clx";
1929
1929
+
}));
1930
1930
+
1931
1931
+
1923
1932
"clx-truetype" = buildLispPackage
1924
1933
((f: x: (x // (f x)))
1925
1934
(qlOverrides."clx-truetype" or (x: {}))