tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
git-publish: 1.8.1 -> 1.8.2
rfc1149.tngl.sh
2 years ago
36b26cee
571a07d7
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
git-publish
default.nix
+2
-2
pkgs/applications/version-management/git-publish/default.nix
···
1
1
{ lib, stdenv, python, perl, fetchFromGitHub, installShellFiles }:
2
2
stdenv.mkDerivation rec {
3
3
pname = "git-publish";
4
4
-
version = "1.8.1";
4
4
+
version = "1.8.2";
5
5
6
6
src = fetchFromGitHub {
7
7
owner = "stefanha";
8
8
repo = "git-publish";
9
9
rev = "v${version}";
10
10
-
sha256 = "14rz5kli6sz171cvdc46z3z0nnpd57rliwr6nn6vjjc49yyfwgl4";
10
10
+
hash = "sha256-jjpbr+ZqG4U8/z0PurnXR+IUKQkG3QB8YqhDkH8uu2Y=";
11
11
};
12
12
13
13
nativeBuildInputs = [ perl installShellFiles ];