forked from mirrors/nixpkgs
gpx: init at 2.5.2
This commit is contained in:
parent
e2aa6728c9
commit
5de6ee22d1
|
@ -2001,6 +2001,11 @@
|
|||
github = "leenaars";
|
||||
name = "Michiel Leenaars";
|
||||
};
|
||||
leo60228 = {
|
||||
email = "iakornfeld@gmail.com";
|
||||
github = "leo60228";
|
||||
name = "leo60228";
|
||||
};
|
||||
leonardoce = {
|
||||
email = "leonardo.cecchi@gmail.com";
|
||||
github = "leonardoce";
|
||||
|
|
23
pkgs/applications/misc/gpx/default.nix
Normal file
23
pkgs/applications/misc/gpx/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gpx-${version}";
|
||||
version = "2.5.2";
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "markwal";
|
||||
repo = "GPX";
|
||||
rev = version;
|
||||
sha256 = "1yab269x8qyf7rd04vaxyqyjv4pzz9lp4sc4dwh927k23avr3rw5";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Gcode to x3g conversion postprocessor";
|
||||
homepage = https://github.com/markwal/GPX/;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.leo60228 ];
|
||||
};
|
||||
}
|
|
@ -15649,6 +15649,8 @@ with pkgs;
|
|||
gtk2 = gtk2-x11;
|
||||
};
|
||||
|
||||
gpx = callPackage ../applications/misc/gpx { };
|
||||
|
||||
gqrx = qt5.callPackage ../applications/misc/gqrx { };
|
||||
|
||||
gpx-viewer = callPackage ../applications/misc/gpx-viewer { };
|
||||
|
|
Loading…
Reference in a new issue