Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pkgs/applications/audio/littlegptracker/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ stdenv
, fetchFromGitHub
, unstableGitUpdater
, SDL
, jack2
, Foundation
Expand Down Expand Up @@ -42,6 +43,8 @@ stdenv.mkDerivation rec {
installPhase = let extension = if stdenv.isDarwin then "app" else "deb-exe";
in "install -Dm555 lgpt.${extension} $out/bin/lgpt";

passthru.updateScript = unstableGitUpdater { };

meta = with stdenv.lib; {
description = "A music tracker similar to lsdj optimised to run on portable game consoles";
longDescription = ''
Expand Down
12 changes: 9 additions & 3 deletions pkgs/applications/graphics/meme/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv
, buildGoPackage
, unstableGitUpdater
, fetchFromGitHub
}:

buildGoPackage rec {
pname = "meme-unstable";
version = "2017-09-10";
pname = "meme";
version = "unstable-2017-09-10";

owner = "nomad-software";
repo = "meme";
Expand All @@ -14,6 +18,8 @@ buildGoPackage rec {
sha256 = "1gbsv1d58ck6mj89q31s5b0ppw51ab76yqgz39jgwqnkidvzdfly";
};

passthru.updateScript = unstableGitUpdater { };

meta = with stdenv.lib; {
description = "A command line utility for creating image macro style memes";
homepage = "https://github.com/nomad-software/meme";
Expand Down
7 changes: 4 additions & 3 deletions pkgs/development/compilers/lobster/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ stdenv
, fetchFromGitHub
, unstableGitUpdater
, cmake
, callPackage

Expand Down Expand Up @@ -46,8 +47,9 @@ stdenv.mkDerivation rec {
preConfigure = "cd dev";
enableParallelBuilding = true;

passthru.tests = {
can-run-hello-world = callPackage ./test-can-run-hello-world.nix {};
passthru = {
tests.can-run-hello-world = callPackage ./test-can-run-hello-world.nix {};
updateScript = unstableGitUpdater { };
};

meta = with stdenv.lib; {
Expand All @@ -63,4 +65,3 @@ stdenv.mkDerivation rec {
platforms = platforms.all;
};
}

1 change: 0 additions & 1 deletion pkgs/development/compilers/qbe/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ stdenv.mkDerivation rec {
platforms = platforms.all;
};
}

4 changes: 3 additions & 1 deletion pkgs/tools/misc/cht.sh/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ stdenv
, fetchFromGitHub
, unstableGitUpdater
, makeWrapper
, curl
, ncurses
Expand Down Expand Up @@ -35,11 +36,12 @@ stdenv.mkDerivation {
--prefix PATH : "${stdenv.lib.makeBinPath [ curl rlwrap ncurses xsel ]}"
'';

passthru.updateScript = unstableGitUpdater { };

meta = with stdenv.lib; {
description = "CLI client for cheat.sh, a community driven cheat sheet";
license = licenses.mit;
maintainers = with maintainers; [ fgaz evanjs ];
homepage = "https://github.com/chubin/cheat.sh";
};
}

15 changes: 11 additions & 4 deletions pkgs/tools/security/bash-supergenpass/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
{ stdenv, fetchFromGitHub, makeWrapper, openssl, coreutils, gnugrep }:
{ stdenv
, fetchFromGitHub
, unstableGitUpdater
, makeWrapper
, openssl
, coreutils
, gnugrep }:

stdenv.mkDerivation {
pname = "bash-supergenpass-unstable";
version = "2018-04-18";
pname = "bash-supergenpass";
version = "unstable-2018-04-18";

nativeBuildInputs = [ makeWrapper ];

Expand All @@ -18,6 +24,8 @@ stdenv.mkDerivation {
wrapProgram "$out/bin/supergenpass" --prefix PATH : "${stdenv.lib.makeBinPath [ openssl coreutils gnugrep ]}"
'';

passthru.updateScript = unstableGitUpdater { };

meta = with stdenv.lib; {
description = "Bash shell-script implementation of SuperGenPass password generation";
longDescription = ''
Expand All @@ -36,4 +44,3 @@ stdenv.mkDerivation {
homepage = "https://github.com/lanzz/bash-supergenpass";
};
}