Unverified Commit 372ef11a authored by dish's avatar dish Committed by GitHub
Browse files

many packages: add updateScript (#464747)

parents d9b802c7 eb5bb5d1
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
  npmHooks,
  nodejs,
  git,
  nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "auto-changelog";
@@ -40,6 +41,8 @@ stdenv.mkDerivation (finalAttrs: {
    runHook postCheck
  '';

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Command line tool for generating a changelog from git tags and commit history";
    homepage = "https://github.com/cookpete/auto-changelog";
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
  yarnBuildHook,
  yarnInstallHook,
  nodejs,
  nix-update-script,
}:

stdenv.mkDerivation (finalAttrs: {
@@ -37,6 +38,8 @@ stdenv.mkDerivation (finalAttrs: {
    nodejs
  ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Generate pretty HTML diffs from unified and git diff output in your terminal";
    homepage = "https://diff2html.xyz#cli";
+3 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@
  yarnConfigHook,
  yarnBuildHook,
  npmHooks,
  nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
  pname = "get-graphql-schema";
@@ -31,6 +32,8 @@ stdenv.mkDerivation (finalAttrs: {
    nodejs
  ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Fetch and print the GraphQL schema from a GraphQL HTTP endpoint";
    homepage = "https://github.com/prisma-labs/get-graphql-schema";
+3 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildNpmPackage,
  fetchFromGitHub,
  nix-update-script,
}:

buildNpmPackage rec {
@@ -29,6 +30,8 @@ buildNpmPackage rec {
    rm -f $out/lib/node_modules/${pname}/node_modules/.bin/rimraf
  '';

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Multiple git repository management tool";
    homepage = "https://mixu.net/gr/";
+3 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  fetchFromGitHub,
  buildGoModule,
  unzip,
  nix-update-script,
}:

buildGoModule rec {
@@ -30,6 +31,8 @@ buildGoModule rec {

  doCheck = true;

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Go symbol recovery tool";
    mainProgram = "GoReSym";
Loading