mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
30 lines
662 B
Nix
30 lines
662 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "alloy";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tidev";
|
|
repo = "alloy";
|
|
rev = version;
|
|
hash = "sha256-s1hAbbUy7k/GacBIk8OMD48/1IUcRcpV3LnrCCZim1A=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-YNyFrO6+oFluyk3TlUf/0vdHrgTJ3l5DN801wnpBa6s=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/tidev/alloy/blob/${src.rev}/CHANGELOG.md";
|
|
description = "MVC framework for the Appcelerator Titanium SDK";
|
|
homepage = "https://github.com/tidev/alloy";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "alloy";
|
|
maintainers = [ ];
|
|
};
|
|
}
|