gup: 0.5.4 -> 0.5.5; use fetchFromGitHub

This commit is contained in:
Tobias Geerinckx-Rice 2016-04-11 16:21:12 +02:00
parent 3ef785eaa6
commit 613cef6240
No known key found for this signature in database
GPG key ID: 91CCDB9B48541B99

View file

@ -1,10 +1,11 @@
{ stdenv, fetchgit, lib, python, which }:
{ stdenv, fetchFromGitHub, lib, python, which }:
let
version = "0.5.4";
src = fetchgit {
url = "https://github.com/gfxmonk/gup.git";
rev = "b3980e529c860167b48e31634d2b479fc4d10274";
sha256 = "bb02ba0a7f1680ed5b9a8e8c9cc42aa07016329840f397d914b94744f9ed7c85";
version = "0.5.5";
src = fetchFromGitHub {
sha256 = "12yv0j333z6jkaaal8my3jx3k4ml9hq8ldis5zfvr8179d4xah7q";
rev = "version-${version}";
repo = "gup";
owner = "gfxmonk";
};
in
import ./build.nix