imatix_gsl: init at 4.1

This commit is contained in:
Nathan Moos 2016-04-28 16:53:00 -04:00
parent 89ce5d4b96
commit 6dac18a8be
3 changed files with 33 additions and 0 deletions

View File

@ -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>";

View File

@ -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 ];
};
}

View File

@ -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 {};
}