planner: init at 0.14.6 (#17078)
This commit is contained in:
parent
0dee86279d
commit
60d32ff6cc
45
pkgs/applications/office/planner/default.nix
Normal file
45
pkgs/applications/office/planner/default.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ stdenv, fetchurl
|
||||||
|
, pkgconfig
|
||||||
|
, intltool
|
||||||
|
, gnome
|
||||||
|
, libxslt
|
||||||
|
, python
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "${major}.${minor}.${patch}";
|
||||||
|
major = "0";
|
||||||
|
minor = "14";
|
||||||
|
patch = "6";
|
||||||
|
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
name = "planner-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://ftp.gnome.org/pub/GNOME/sources/planner/${major}.${minor}/planner-${version}.tar.xz";
|
||||||
|
sha256 = "15h6ps58giy5r1g66sg1l4xzhjssl362mfny2x09khdqsvk2j38k";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
intltool
|
||||||
|
gnome.GConf
|
||||||
|
gnome.gtk
|
||||||
|
gnome.libgnomecanvas
|
||||||
|
gnome.libgnomeui
|
||||||
|
gnome.libglade
|
||||||
|
gnome.scrollkeeper
|
||||||
|
libxslt
|
||||||
|
python
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://wiki.gnome.org/Apps/Planner/;
|
||||||
|
description = "Project management application for GNOME";
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.rasendubi ];
|
||||||
|
};
|
||||||
|
}
|
@ -13869,6 +13869,8 @@ in
|
|||||||
|
|
||||||
pijul = callPackage ../applications/version-management/pijul { };
|
pijul = callPackage ../applications/version-management/pijul { };
|
||||||
|
|
||||||
|
planner = callPackage ../applications/office/planner { };
|
||||||
|
|
||||||
playonlinux = callPackage ../applications/misc/playonlinux {
|
playonlinux = callPackage ../applications/misc/playonlinux {
|
||||||
stdenv = stdenv_32bit;
|
stdenv = stdenv_32bit;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user