mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
i7z: move to maintained fork (FreeBSD folks), 0.27.2 -> 0.27.3
This commit is contained in:
parent
e8a35913e1
commit
6bb07ecbbc
@ -1,12 +1,15 @@
|
||||
{ stdenv, lib, fetchurl, ncurses
|
||||
{ stdenv, lib, fetchFromGitHub, ncurses
|
||||
, withGui ? false, qt4 ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "i7z-0.27.2";
|
||||
name = "i7z-${version}";
|
||||
version = "0.27.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/i7z/${name}.tar.gz";
|
||||
sha256 = "1wa7ix6m75wl3k2n88sz0x8cckvlzqklja2gvzqfw5rcfdjjvxx7";
|
||||
src = fetchFromGitHub {
|
||||
owner = "DimitryAndric";
|
||||
repo = "i7z";
|
||||
rev = "v${version}";
|
||||
sha256 = "0l8wz0ffb27nkwchc606js652spk8masy3kjmzh7ygipwsary5ds";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses ] ++ lib.optional withGui qt4;
|
||||
|
Loading…
Reference in New Issue
Block a user