tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
git-fire: Init at master as of 2017-08-27 14:30 CST
Samuel W. Flint
8 years ago
c91fe60d
44f797fa
+35
2 changed files
expand all
collapse all
unified
split
pkgs
tools
misc
git-fire
default.nix
top-level
all-packages.nix
+33
pkgs/tools/misc/git-fire/default.nix
reviewed
···
1
1
+
{ stdenv, fetchFromGitHub }:
2
2
+
3
3
+
stdenv.mkDerivation {
4
4
+
name = "git-fire-unstable-2017-08-27";
5
5
+
6
6
+
src = fetchFromGitHub {
7
7
+
owner = "qw3rtman";
8
8
+
repo = "git-fire";
9
9
+
rev = "d72b68ed356f726c77c60294f9220275f16c9931";
10
10
+
sha256 = "1hdwkhyjjx31y0lpjkhbb4f5y9f7g70fnd4c2246cmk2rbsvj5b2";
11
11
+
};
12
12
+
13
13
+
unpackPhase = ":";
14
14
+
15
15
+
installPhase = ''
16
16
+
mkdir -p $out/bin
17
17
+
cp $src/git-fire $out/bin
18
18
+
chmod +x $out/bin/git-fire
19
19
+
'';
20
20
+
21
21
+
meta = with stdenv.lib; {
22
22
+
description = ''
23
23
+
Push ALL changes in a git repository
24
24
+
'';
25
25
+
longDescription = ''
26
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
27
+
'';
28
28
+
homepage = "https://github.com/qw3rtman/git-fire";
29
29
+
license = licenses.mit;
30
30
+
platforms = platforms.linux;
31
31
+
maintainers = [ maintainers.swflint ];
32
32
+
};
33
33
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
571
571
572
572
genymotion = callPackage ../development/mobile/genymotion { };
573
573
574
574
+
git-fire = callPackage ../tools/misc/git-fire { };
575
575
+
574
576
grc = callPackage ../tools/misc/grc { };
575
577
576
578
green-pdfviewer = callPackage ../applications/misc/green-pdfviewer {