summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/stgit/default.nix
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-29 08:53:42 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-03-29 08:53:42 -0700
commitfc038883e5732b7c24fcd62f135281b1c2c589fc (patch)
tree0e978e0eeb426f4f5305c934526af686d6d1566a /pkgs/applications/version-management/git-and-tools/stgit/default.nix
parentc7d7abc51e5f9b9c7481a83c47b37508bf08b05b (diff)
downloadnixpkgs-fc038883e5732b7c24fcd62f135281b1c2c589fc.tar
nixpkgs-fc038883e5732b7c24fcd62f135281b1c2c589fc.tar.gz
nixpkgs-fc038883e5732b7c24fcd62f135281b1c2c589fc.tar.bz2
nixpkgs-fc038883e5732b7c24fcd62f135281b1c2c589fc.tar.lz
nixpkgs-fc038883e5732b7c24fcd62f135281b1c2c589fc.tar.xz
nixpkgs-fc038883e5732b7c24fcd62f135281b1c2c589fc.tar.zst
nixpkgs-fc038883e5732b7c24fcd62f135281b1c2c589fc.zip
gitAndTools.stgit: 0.17.1 -> 0.18
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/stgit/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/fwhfsvfs23x3jwc2wgx805x229vxwd24-stgit-0.18/bin/stg -h` got 0 exit code
- ran `/nix/store/fwhfsvfs23x3jwc2wgx805x229vxwd24-stgit-0.18/bin/stg --help` got 0 exit code
- ran `/nix/store/fwhfsvfs23x3jwc2wgx805x229vxwd24-stgit-0.18/bin/stg help` got 0 exit code
- found 0.18 with grep in /nix/store/fwhfsvfs23x3jwc2wgx805x229vxwd24-stgit-0.18
- directory tree listing: https://gist.github.com/b3a9f7bf9ff22a7858ac4f6e4d7d7be0
Diffstat (limited to 'pkgs/applications/version-management/git-and-tools/stgit/default.nix')
-rw-r--r--pkgs/applications/version-management/git-and-tools/stgit/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/stgit/default.nix b/pkgs/applications/version-management/git-and-tools/stgit/default.nix
index 7130e057d97..64e700273d1 100644
--- a/pkgs/applications/version-management/git-and-tools/stgit/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/stgit/default.nix
@@ -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 ];