Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 51 lines 865 B view raw
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 pkg-config, 6 gtk3, 7 libxml2, 8 gettext, 9 libical, 10 libnotify, 11 libarchive, 12 gspell, 13 webkitgtk_4_1, 14 libgringotts, 15 wrapGAppsHook3, 16}: 17 18stdenv.mkDerivation rec { 19 pname = "osmo"; 20 version = "0.4.4"; 21 22 src = fetchurl { 23 url = "mirror://sourceforge/osmo-pim/${pname}-${version}.tar.gz"; 24 sha256 = "19h3dnjgqbawnvgnycyp4n5b6mjsp5zghn3b69b6f3xa3fyi32qy"; 25 }; 26 27 nativeBuildInputs = [ 28 pkg-config 29 gettext 30 wrapGAppsHook3 31 ]; 32 buildInputs = [ 33 gtk3 34 libxml2 35 libical 36 libnotify 37 libarchive 38 gspell 39 webkitgtk_4_1 40 libgringotts 41 ]; 42 43 meta = with lib; { 44 description = "Handy personal organizer"; 45 mainProgram = "osmo"; 46 homepage = "https://clayo.org/osmo/"; 47 license = licenses.gpl2; 48 platforms = platforms.linux; 49 maintainers = with maintainers; [ pSub ]; 50 }; 51}