Merge pull request #15064 from moosingin3space/package/imatix_gsl

imatix_gsl: init at 4.1
This commit is contained in:
Joachim Fasting 2016-04-29 00:51:07 +02:00
commit fc92bbfa78
3 changed files with 33 additions and 0 deletions

@ -236,6 +236,7 @@
mirdhyn = "Merlin Gaillard <mirdhyn@gmail.com>";
modulistic = "Pablo Costa <modulistic@gmail.com>";
mog = "Matthew O'Gorman <mog-lists@rldn.net>";
moosingin3space = "Nathan Moos <moosingin3space@gmail.com>";
moretea = "Maarten Hoogendoorn <maarten@moretea.nl>";
mornfall = "Petr Ročkai <me@mornfall.net>";
MostAwesomeDude = "Corbin Simpson <cds@corbinsimpson.com>";

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, pcre } :
stdenv.mkDerivation rec {
name = "imatix_gsl";
version = "4.1";
src = fetchFromGitHub {
owner = "imatix";
repo = "gsl";
rev = "72192d0d9de17de08d9379602d6482b4e5d402d0";
sha256 = "1apy11avgqc27xlczyjh15y10qjdyqsqab1wrl2067qgpdiy58w7";
};
buildInputs = [ pcre ];
preBuild = ''
cd src
'';
installFlags = "DESTDIR=$(out)";
meta = with stdenv.lib; {
license = licenses.gpl3Plus;
homepage = "https://github.com/imatix/gsl";
description = ''
A universal code generator
'';
platforms = platforms.unix;
maintainer = [ maintainers.moosingin3space ];
};
}

@ -16677,4 +16677,6 @@ in
golden-cheetah = qt5.callPackage ../applications/misc/golden-cheetah {};
tomb = callPackage ../os-specific/linux/tomb {};
imatix_gsl = callPackage ../development/tools/imatix_gsl {};
}