mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
notes: init at 2.2.0
This commit is contained in:
parent
e3eeeecadd
commit
516ca7d8a3
54
pkgs/applications/office/notes/default.nix
Normal file
54
pkgs/applications/office/notes/default.nix
Normal file
@ -0,0 +1,54 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, wrapQtAppsHook
|
||||
, qtbase
|
||||
, qtdeclarative
|
||||
, Cocoa
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "notes";
|
||||
version = "2.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nuttyartist";
|
||||
repo = "notes";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-ZfAm77UHyjs2aYOYb+AhKViz6uteb7+KKSedonSiMkY=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
cmakeFlags = [ "-DUPDATE_CHECKER=OFF" ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtdeclarative
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Cocoa
|
||||
];
|
||||
|
||||
postInstall = lib.optionalString stdenv.isLinux ''
|
||||
# temporary fix: https://github.com/nuttyartist/notes/issues/613
|
||||
substituteInPlace $out/share/applications/io.github.nuttyartist.notes.desktop \
|
||||
--replace 'Exec=notes' 'Exec=env QT_STYLE_OVERRIDE= notes'
|
||||
'' + lib.optionalString stdenv.isDarwin ''
|
||||
mkdir $out/Applications
|
||||
mv $out/bin/Notes.app $out/Applications
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A fast and beautiful note-taking app";
|
||||
downloadPage = "https://github.com/nuttyartist/notes";
|
||||
homepage = "https://www.get-notes.com";
|
||||
license = lib.licenses.mpl20;
|
||||
maintainers = with lib.maintainers; [ zendo ];
|
||||
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
||||
};
|
||||
})
|
@ -10392,6 +10392,10 @@ with pkgs;
|
||||
|
||||
notify-osd = callPackage ../applications/misc/notify-osd { };
|
||||
|
||||
notes = qt6Packages.callPackage ../applications/office/notes {
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||
};
|
||||
|
||||
notes-up = callPackage ../applications/office/notes-up { };
|
||||
|
||||
notify-osd-customizable = callPackage ../applications/misc/notify-osd-customizable { };
|
||||
|
Loading…
Reference in New Issue
Block a user