Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

lispPackages.xembed: init

+35
+25
pkgs/development/lisp-modules/quicklisp-to-nix-output/xembed.nix
···
··· 1 + args @ { fetchurl, ... }: 2 + rec { 3 + baseName = ''xembed''; 4 + version = ''clx-20120909-git''; 5 + 6 + description = ''''; 7 + 8 + deps = [ args."clx" ]; 9 + 10 + src = fetchurl { 11 + url = ''http://beta.quicklisp.org/archive/clx-xembed/2012-09-09/clx-xembed-20120909-git.tgz''; 12 + sha256 = ''06h2md0lb0sribpkg5k7z7fnc02k0ssaswcimg2ya8wqypj4rlbb''; 13 + }; 14 + 15 + packageName = "xembed"; 16 + 17 + asdFilesToKeep = ["xembed.asd"]; 18 + overrides = x: x; 19 + } 20 + /* (SYSTEM xembed DESCRIPTION NIL SHA256 21 + 06h2md0lb0sribpkg5k7z7fnc02k0ssaswcimg2ya8wqypj4rlbb URL 22 + http://beta.quicklisp.org/archive/clx-xembed/2012-09-09/clx-xembed-20120909-git.tgz 23 + MD5 4270362697093017ac0243b71e3576f9 NAME xembed FILENAME xembed DEPS 24 + ((NAME clx FILENAME clx)) DEPENDENCIES (clx) VERSION clx-20120909-git 25 + SIBLINGS NIL PARASITES NIL) */
+1
pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
··· 57 cl-who 58 clx 59 clx-truetype 60 command-line-arguments 61 css-lite 62 css-selectors
··· 57 cl-who 58 clx 59 clx-truetype 60 + xembed 61 command-line-arguments 62 css-lite 63 css-selectors
+9
pkgs/development/lisp-modules/quicklisp-to-nix.nix
··· 1920 })); 1921 1922 1923 "clx-truetype" = buildLispPackage 1924 ((f: x: (x // (f x))) 1925 (qlOverrides."clx-truetype" or (x: {}))
··· 1920 })); 1921 1922 1923 + "xembed" = buildLispPackage 1924 + ((f: x: (x // (f x))) 1925 + (qlOverrides."xembed" or (x: {})) 1926 + (import ./quicklisp-to-nix-output/xembed.nix { 1927 + inherit fetchurl; 1928 + "clx" = quicklisp-to-nix-packages."clx"; 1929 + })); 1930 + 1931 + 1932 "clx-truetype" = buildLispPackage 1933 ((f: x: (x // (f x))) 1934 (qlOverrides."clx-truetype" or (x: {}))