4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
70 lines
1.4 KiB
Nix
70 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, nix-update-script
|
|
, pantheon
|
|
, pkgconfig
|
|
, vala_0_46
|
|
, cmake
|
|
, ninja
|
|
, gtk3
|
|
, gtksourceview3
|
|
, webkitgtk
|
|
, gtkspell3
|
|
, glib
|
|
, libgee
|
|
, sqlite
|
|
, discount
|
|
, wrapGAppsHook
|
|
, withPantheon ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "notes-up";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Philip-Scott";
|
|
repo = "Notes-up";
|
|
rev = version;
|
|
sha256 = "0bklgp8qrrj9y5m77xqbpy1ld2d9ya3rlxklgzx3alffq5312i4s";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
# fails with newer vala: https://github.com/Philip-Scott/Notes-up/issues/349
|
|
vala_0_46
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
discount
|
|
glib
|
|
gtk3
|
|
gtksourceview3
|
|
gtkspell3
|
|
libgee
|
|
pantheon.granite
|
|
sqlite
|
|
webkitgtk
|
|
];
|
|
|
|
# Whether to build with contractor support (Pantheon specific)
|
|
cmakeFlags = stdenv.lib.optional (!withPantheon) "-Dnoele=yes";
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script {
|
|
attrPath = pname;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|