Merge pull request #38050 from ryantm/auto-update/stgit

gitAndTools.stgit: 0.17.1 -> 0.18
This commit is contained in:
Matthew Justin Bauer 2018-04-08 21:53:27 -05:00 committed by GitHub
commit ac04a2e2f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,15 @@
{ stdenv, fetchurl, python2, git }:
let
name = "stgit-0.17.1";
name = "stgit-${version}";
version = "0.18";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "http://download.gna.org/stgit/${name}.tar.gz";
sha256 = "1pka0ns9x0kabn036zsf0mwmwiynckhnva51kgxsch9fqah6acyl";
url = "https://github.com/ctmarinas/stgit/archive/v${version}.tar.gz";
sha256 = "19fk6vw3pgp2a98wpd4j3kyiyll5dy9bi4921wq1mrky0l53mj00";
};
buildInputs = [ python2 git ];