159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
42 lines
992 B
Nix
42 lines
992 B
Nix
{ cctools
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
, lib
|
|
, python3
|
|
, stdenv
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "semantic-release";
|
|
version = "24.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "semantic-release";
|
|
repo = "semantic-release";
|
|
rev = "v${version}";
|
|
hash = "sha256-BGSe05I1NconPkPCzGOOLPbH/JSlwXvAWbViJVYMU/c=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-DsBklxeY9RbvFsEA56vkmvVms+W9mr9qA/JVgAgs81k=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
] ++ lib.optional stdenv.isDarwin cctools;
|
|
|
|
# Fixes `semantic-release --version` output
|
|
postPatch = ''
|
|
substituteInPlace package.json --replace \
|
|
'"version": "0.0.0-development"' \
|
|
'"version": "${version}"'
|
|
'';
|
|
|
|
meta = {
|
|
description = "Fully automated version management and package publishing";
|
|
mainProgram = "semantic-release";
|
|
homepage = "https://semantic-release.gitbook.io/semantic-release/";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.sestrella ];
|
|
};
|
|
}
|