mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 09:31:01 +00:00
32 lines
782 B
Nix
32 lines
782 B
Nix
|
{ pkgs, stdenv, eggDerivation, fetchegg }:
|
||
|
let
|
||
|
eggs = import ./eggs.nix { inherit pkgs stdenv eggDerivation fetchegg; };
|
||
|
in with pkgs; eggDerivation rec {
|
||
|
pname = "ugarit-manifest-maker";
|
||
|
version = "0.1";
|
||
|
name = "${pname}-${version}";
|
||
|
|
||
|
src = fetchegg {
|
||
|
inherit version;
|
||
|
name = pname;
|
||
|
sha256 = "1jv8lhn4s5a3qphqd3zfwl1py0m5cmqj1h55ys0935m5f422547q";
|
||
|
};
|
||
|
|
||
|
buildInputs = with eggs; [
|
||
|
matchable
|
||
|
srfi-37
|
||
|
fnmatch
|
||
|
miscmacros
|
||
|
ugarit
|
||
|
numbers
|
||
|
];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
homepage = https://www.kitten-technologies.co.uk/project/ugarit-manifest-maker/;
|
||
|
description = "A tool for generating import manifests for Ugarit";
|
||
|
license = licenses.bsd3;
|
||
|
maintainers = [ maintainers.ebzzry ];
|
||
|
platforms = platforms.unix;
|
||
|
};
|
||
|
}
|