3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/office/treesheets/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, wxGTK
, cmake
, ninja
2022-01-12 04:00:00 +00:00
, wrapGAppsHook
, unstableGitUpdater
}:
2017-04-01 14:34:17 +01:00
stdenv.mkDerivation rec {
pname = "treesheets";
version = "unstable-2022-03-12";
2017-04-01 14:34:17 +01:00
src = fetchFromGitHub {
owner = "aardappel";
repo = "treesheets";
rev = "120c10d4d9ea1ce76db5c1bbd6f5d705b397b57d";
sha256 = "oXgOvvRoZpueEeWnD3jsc6y5RIAzkXzLeEe7BSErBpw=";
2017-04-01 14:34:17 +01:00
};
nativeBuildInputs = [
cmake
ninja
2022-01-12 04:00:00 +00:00
wrapGAppsHook
];
2017-04-01 14:34:17 +01:00
buildInputs = [
wxGTK
];
2017-04-01 14:34:17 +01:00
NIX_CFLAGS_COMPILE = "-DPACKAGE_VERSION=\"${builtins.replaceStrings [ "unstable-" ] [ "" ] version}\"";
2017-04-01 14:34:17 +01:00
passthru = {
updateScript = unstableGitUpdater { };
};
2017-04-01 14:34:17 +01:00
meta = with lib; {
2017-04-01 14:34:17 +01:00
description = "Free Form Data Organizer";
longDescription = ''
The ultimate replacement for spreadsheets, mind mappers, outliners,
PIMs, text editors and small databases.
Suitable for any kind of data organization, such as Todo lists,
calendars, project management, brainstorming, organizing ideas,
planning, requirements gathering, presentation of information, etc.
'';
homepage = "https://strlen.com/treesheets/";
2018-09-24 04:06:43 +01:00
maintainers = with maintainers; [ obadz avery ];
platforms = platforms.linux;
license = licenses.zlib;
2017-04-01 14:34:17 +01:00
};
}