gerbilPackages.gerbil-utils: init at 2020-05-16
This commit is contained in:
parent
756c8a27d9
commit
f9360e7974
@ -4,6 +4,7 @@
|
|||||||
rec {
|
rec {
|
||||||
# Gerbil libraries
|
# Gerbil libraries
|
||||||
gerbilPackages-unstable = {
|
gerbilPackages-unstable = {
|
||||||
|
gerbil-utils = callPackage ./gerbil-utils.nix { };
|
||||||
};
|
};
|
||||||
|
|
||||||
# Use this function in any package that uses Gerbil libraries, to define the GERBIL_LOADPATH.
|
# Use this function in any package that uses Gerbil libraries, to define the GERBIL_LOADPATH.
|
||||||
|
24
pkgs/development/compilers/gerbil/gerbil-utils.nix
Normal file
24
pkgs/development/compilers/gerbil/gerbil-utils.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib, fetchFromGitHub, gerbil-unstable, gerbil-support, gambit-support }:
|
||||||
|
|
||||||
|
gerbil-support.gerbilPackage {
|
||||||
|
pname = "gerbil-utils";
|
||||||
|
version = "unstable-2020-05-17";
|
||||||
|
git-version = "33ef720";
|
||||||
|
package = "clan";
|
||||||
|
gerbil = gerbil-unstable;
|
||||||
|
gambit-params = gambit-support.unstable-params;
|
||||||
|
version-path = "";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "fare";
|
||||||
|
repo = "gerbil-utils";
|
||||||
|
rev = "33ef720799ba98dc9eec773c662f070af4bac016";
|
||||||
|
sha256 = "0dsb97magbxzjqqfzwq4qwf7i80llv0s1dsy9nkzkvkq8drxlmqf";
|
||||||
|
};
|
||||||
|
meta = {
|
||||||
|
description = "Gerbil Clan: Community curated Collection of Common Utilities";
|
||||||
|
homepage = "https://github.com/fare/gerbil-utils";
|
||||||
|
license = lib.licenses.lgpl21;
|
||||||
|
platforms = lib.platforms.unix;
|
||||||
|
maintainers = with lib.maintainers; [ fare ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user