2019-10-10 04:47:37 +02:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pantheon
|
|
|
|
, pkgconfig
|
|
|
|
, vala
|
|
|
|
, cmake
|
|
|
|
, ninja
|
|
|
|
, gtk3
|
|
|
|
, gtksourceview3
|
|
|
|
, webkitgtk
|
|
|
|
, gtkspell3
|
|
|
|
, glib
|
|
|
|
, libgee
|
|
|
|
, sqlite
|
|
|
|
, discount
|
|
|
|
, wrapGAppsHook
|
2019-02-22 19:45:57 +01:00
|
|
|
, withPantheon ? false }:
|
2019-02-05 21:34:54 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "notes-up";
|
2019-06-17 11:49:41 +02:00
|
|
|
version = "2.0.2";
|
2019-02-05 21:34:54 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Philip-Scott";
|
|
|
|
repo = "Notes-up";
|
|
|
|
rev = version;
|
2019-06-17 11:49:41 +02:00
|
|
|
sha256 = "0bklgp8qrrj9y5m77xqbpy1ld2d9ya3rlxklgzx3alffq5312i4s";
|
2019-02-05 21:34:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
ninja
|
2019-10-10 04:47:37 +02:00
|
|
|
vala
|
2019-02-05 21:34:54 +01:00
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
discount
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
gtksourceview3
|
|
|
|
gtkspell3
|
|
|
|
libgee
|
|
|
|
pantheon.granite
|
|
|
|
sqlite
|
|
|
|
webkitgtk
|
|
|
|
];
|
|
|
|
|
2019-02-22 19:45:57 +01:00
|
|
|
# Whether to build with contractor support (Pantheon specific)
|
|
|
|
cmakeFlags = if withPantheon then null else [ "-Dnoele=yes" ];
|
|
|
|
|
2019-02-05 21:34:54 +01:00
|
|
|
meta = with stdenv.lib; {
|
2019-02-22 19:45:57 +01:00
|
|
|
description = "Markdown notes editor and manager designed for elementary OS"
|
|
|
|
+ stdenv.lib.optionalString withPantheon " - built with Contractor support";
|
2019-02-05 21:34:54 +01:00
|
|
|
homepage = https://github.com/Philip-Scott/Notes-up;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ davidak worldofpeace ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|