1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

gputils: clean up, fix homepage url

This commit is contained in:
Yegor Timoshenko 2018-07-17 19:19:01 +03:00 committed by GitHub
parent 879edd79be
commit e6a721ed60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
version = "1.5.0-1";
name = "gputils-${version}";
version = "1.5.0-1";
src = fetchurl {
url = "mirror://sourceforge/gputils/${name}.tar.bz2";
sha256 = "055v83fdgqljprapf7rmh8x66mr13fj0qypj49xba5spx0ca123g";
};
meta = with stdenv.lib; {
homepage = http://sdcc.sourceforge.net/;
homepage = https://gputils.sourceforge.io/;
license = licenses.gpl2;
maintainers = with maintainers; [ yorickvp ];
platforms = platforms.linux;
maintainers = [ maintainers.yorickvp ];
};
}