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:
parent
879edd79be
commit
e6a721ed60
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue