mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
imatix_gsl: init at 4.1
This commit is contained in:
parent
89ce5d4b96
commit
6dac18a8be
@ -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>";
|
||||
|
30
pkgs/development/tools/imatix_gsl/default.nix
Normal file
30
pkgs/development/tools/imatix_gsl/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user