aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/lisp-modules/quicklisp-to-nix-output/gettext.nix
blob: ffc517973d5d11f6b030c8691923e9f6a9c81651 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
args @ { fetchurl, ... }:
rec {
  baseName = ''gettext'';
  version = ''20171130-git'';

  description = ''An pure Common Lisp implementation of gettext runtime. gettext is an internationalization and localization (i18n) system commonly used for writing multilingual programs on Unix-like computer operating systems.'';

  deps = [ args."flexi-streams" args."split-sequence" args."trivial-gray-streams" args."yacc" ];

  src = fetchurl {
    url = ''http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz'';
    sha256 = ''0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd'';
  };

  packageName = "gettext";

  asdFilesToKeep = ["gettext.asd"];
  overrides = x: x;
}
/* (SYSTEM gettext DESCRIPTION
    An pure Common Lisp implementation of gettext runtime. gettext is an internationalization and localization (i18n) system commonly used for writing multilingual programs on Unix-like computer operating systems.
    SHA256 0nb8i66sb5qmpnk6rk2adlr87m322bra0xpirp63872mybd3y6yd URL
    http://beta.quicklisp.org/archive/gettext/2017-11-30/gettext-20171130-git.tgz
    MD5 d162cb5310db5011c82ef6343fd280ed NAME gettext FILENAME gettext DEPS
    ((NAME flexi-streams FILENAME flexi-streams)
     (NAME split-sequence FILENAME split-sequence)
     (NAME trivial-gray-streams FILENAME trivial-gray-streams)
     (NAME yacc FILENAME yacc))
    DEPENDENCIES (flexi-streams split-sequence trivial-gray-streams yacc)
    VERSION 20171130-git SIBLINGS (gettext-example gettext-tests) PARASITES NIL) */