ugarit-manifest-maker: init at 0.1

This commit is contained in:
Rommel M. Martinez
2016-02-20 01:30:54 +08:00
parent d3482be0e5
commit cb8ac5742d
3 changed files with 464 additions and 0 deletions
@@ -0,0 +1,31 @@
{ 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;
};
}