755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
36 lines
794 B
Nix
36 lines
794 B
Nix
{ pkgs, lib, eggDerivation, fetchegg }:
|
|
|
|
let
|
|
eggs = import ./eggs.nix { inherit eggDerivation fetchegg; };
|
|
in
|
|
|
|
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 lib; {
|
|
homepage = "https://www.kitten-technologies.co.uk/project/ugarit-manifest-maker/";
|
|
description = "Tool for generating import manifests for Ugarit";
|
|
mainProgram = "ugarit-manifest-maker";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.ebzzry ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|