mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Adding ASDF package definition system for Common Lisp
This commit is contained in:
parent
6be28d142f
commit
f1dd61d353
40
pkgs/development/lisp-modules/asdf/default.nix
Normal file
40
pkgs/development/lisp-modules/asdf/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{stdenv, fetchurl, texinfo, texLive}:
|
||||
let
|
||||
s = # Generated upstream information
|
||||
rec {
|
||||
baseName="asdf";
|
||||
version="3.0.2.1";
|
||||
name="${baseName}-${version}";
|
||||
hash="1npd4dxsgk06ayhln56mwwky0vdpf7i77mkxfh105pld8w5xs4r4";
|
||||
url="http://common-lisp.net/project/asdf/archives/asdf-3.0.2.1.tar.gz";
|
||||
sha256="1npd4dxsgk06ayhln56mwwky0vdpf7i77mkxfh105pld8w5xs4r4";
|
||||
};
|
||||
buildInputs = [
|
||||
texinfo texLive
|
||||
];
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit (s) name version;
|
||||
inherit buildInputs;
|
||||
src = fetchurl {
|
||||
inherit (s) url sha256;
|
||||
};
|
||||
buildPhase = ''
|
||||
make build/asdf.lisp
|
||||
make -C doc asdf.info asdf.html
|
||||
'';
|
||||
installPhase = ''
|
||||
mkdir -p "$out"/lib/common-lisp/asdf/
|
||||
mkdir -p "$out"/share/doc/asdf/
|
||||
cp -r ./* "$out"/lib/common-lisp/asdf/
|
||||
cp -r doc/* "$out"/share/doc/asdf/
|
||||
'';
|
||||
sourceRoot=".";
|
||||
meta = {
|
||||
inherit (s) version;
|
||||
description = ''Standard software-system definition library for Common Lisp'';
|
||||
license = stdenv.lib.licenses.mit ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
2
pkgs/development/lisp-modules/asdf/default.upstream
Normal file
2
pkgs/development/lisp-modules/asdf/default.upstream
Normal file
@ -0,0 +1,2 @@
|
||||
url http://common-lisp.net/project/asdf/archives/
|
||||
version_link asdf-[0-9].*[.]tar[.].*
|
@ -5878,6 +5878,9 @@ let
|
||||
|
||||
jquery_ui = callPackage ../development/libraries/javascript/jquery-ui { };
|
||||
|
||||
### DEVELOPMENT / LISP MODULES
|
||||
|
||||
asdf = callPackage ../development/lisp-modules/asdf {};
|
||||
|
||||
### DEVELOPMENT / PERL MODULES
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user