mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
949 B
Nix
43 lines
949 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, shen-sources
|
|
, sbcl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "shen-sbcl";
|
|
version = "3.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/Shen-Language/shen-cl/releases/download/v${version}/shen-cl-v${version}-sources.tar.gz";
|
|
sha256 = "0mc10jlrxqi337m6ngwbr547zi4qgk69g1flz5dsddjy5x41j0yz";
|
|
};
|
|
|
|
nativeBuildInputs = [ sbcl ];
|
|
|
|
preBuild = ''
|
|
ln -s ${shen-sources} kernel
|
|
'';
|
|
|
|
buildFlags = [ "build-sbcl" ];
|
|
|
|
checkTarget = "test-sbcl";
|
|
|
|
doCheck = true;
|
|
|
|
installPhase = ''
|
|
install -m755 -D bin/sbcl/shen $out/bin/shen-sbcl
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://shenlanguage.org";
|
|
description = "Port of Shen running on Steel Bank Common Lisp";
|
|
changelog = "https://github.com/Shen-Language/shen-cl/raw/v${version}/CHANGELOG.md";
|
|
platforms = sbcl.meta.platforms;
|
|
maintainers = with maintainers; [ bsima ];
|
|
broken = true;
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|