lol

git-fire: Init at master as of 2017-08-27 14:30 CST

+35
+33
pkgs/tools/misc/git-fire/default.nix
··· 1 + { stdenv, fetchFromGitHub }: 2 + 3 + stdenv.mkDerivation { 4 + name = "git-fire-unstable-2017-08-27"; 5 + 6 + src = fetchFromGitHub { 7 + owner = "qw3rtman"; 8 + repo = "git-fire"; 9 + rev = "d72b68ed356f726c77c60294f9220275f16c9931"; 10 + sha256 = "1hdwkhyjjx31y0lpjkhbb4f5y9f7g70fnd4c2246cmk2rbsvj5b2"; 11 + }; 12 + 13 + unpackPhase = ":"; 14 + 15 + installPhase = '' 16 + mkdir -p $out/bin 17 + cp $src/git-fire $out/bin 18 + chmod +x $out/bin/git-fire 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + description = '' 23 + Push ALL changes in a git repository 24 + ''; 25 + longDescription = '' 26 + In the event of an emergency (fire, etc.), automatically commit all changes/files in a repository, pushing to all known remotes all commits and stashes. 27 + ''; 28 + homepage = "https://github.com/qw3rtman/git-fire"; 29 + license = licenses.mit; 30 + platforms = platforms.linux; 31 + maintainers = [ maintainers.swflint ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 571 571 572 572 genymotion = callPackage ../development/mobile/genymotion { }; 573 573 574 + git-fire = callPackage ../tools/misc/git-fire { }; 575 + 574 576 grc = callPackage ../tools/misc/grc { }; 575 577 576 578 green-pdfviewer = callPackage ../applications/misc/green-pdfviewer {