gputils: init at 1.5.0-1

This commit is contained in:
Yorick van Pelt 2018-07-17 17:28:13 +02:00
parent 76e42081c8
commit 9ba3b39e44
No known key found for this signature in database
GPG key ID: D8D3CC6D951384DE
2 changed files with 18 additions and 0 deletions

View file

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

View file

@ -8163,6 +8163,8 @@ with pkgs;
gotty = callPackage ../servers/gotty { };
gputils = callPackage ../development/tools/misc/gputils { };
gradleGen = callPackage ../development/tools/build-managers/gradle { };
gradle = self.gradleGen.gradle_latest;
gradle_2_14 = self.gradleGen.gradle_2_14;