3
0
Fork 0
forked from mirrors/nixpkgs

notes-up: default without pantheon support

This adds pantheon.notes-up which will only work in pantheon.
This commit is contained in:
worldofpeace 2019-02-22 13:45:57 -05:00
parent 276077a42f
commit ac2546bffe
2 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, cmake, ninja, gtk3, gtksourceview3, webkitgtk, gtkspell3, glib, libgee, sqlite, discount, wrapGAppsHook }:
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, cmake, ninja, gtk3, gtksourceview3, webkitgtk, gtkspell3, glib, libgee, sqlite, discount, wrapGAppsHook
, withPantheon ? false }:
stdenv.mkDerivation rec {
pname = "notes-up";
@ -31,8 +32,12 @@ stdenv.mkDerivation rec {
webkitgtk
];
# Whether to build with contractor support (Pantheon specific)
cmakeFlags = if withPantheon then null else [ "-Dnoele=yes" ];
meta = with stdenv.lib; {
description = "Markdown notes editor and manager designed for elementary OS";
description = "Markdown notes editor and manager designed for elementary OS"
+ stdenv.lib.optionalString withPantheon " - built with Contractor support";
homepage = https://github.com/Philip-Scott/Notes-up;
license = licenses.gpl2;
maintainers = with maintainers; [ davidak worldofpeace ];

View file

@ -62,6 +62,8 @@ lib.makeScope pkgs.newScope (self: with self; {
elementary-gsettings-schemas = callPackage ./desktop/elementary-gsettings-schemas { };
notes-up = pkgs.notes-up.override { withPantheon = true; };
#### APPS
elementary-calculator = callPackage ./apps/elementary-calculator { };