mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
34 lines
687 B
Nix
34 lines
687 B
Nix
{ lib
|
|
, buildDunePackage
|
|
, fetchurl
|
|
, colors
|
|
, tty
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "spices";
|
|
version = "0.0.2";
|
|
|
|
minimalOCamlVersion = "5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/leostera/minttea/releases/download/${version}/minttea-${version}.tbz";
|
|
hash = "sha256-0eB7OuxcPdv9bf2aIQEeir44mQfx5W2AJj7Vb4pGtLI=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
colors
|
|
tty
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Declarative styles for TUI applications";
|
|
homepage = "https://github.com/leostera/minttea";
|
|
changelog = "https://github.com/leostera/minttea/blob/${version}/CHANGES.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|
|
|