nixpkgs/pkgs/applications/graphics/fondo/default.nix

75 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2019-07-04 08:48:25 +00:00
, fetchFromGitHub
, nix-update-script
2019-07-04 08:48:25 +00:00
, pantheon
, vala
, pkg-config
2019-07-04 08:48:25 +00:00
, meson
, ninja
, python3
, glib
, gsettings-desktop-schemas
, gtk3
, libgee
, json-glib
, glib-networking
, libsoup
, libunity
, desktop-file-utils
2019-07-04 08:48:25 +00:00
, wrapGAppsHook
}:
2019-02-05 20:25:46 +00:00
stdenv.mkDerivation rec {
pname = "fondo";
2021-01-18 20:26:09 +00:00
version = "1.5.1";
2019-02-05 20:25:46 +00:00
src = fetchFromGitHub {
owner = "calo001";
repo = pname;
rev = version;
2021-01-18 20:26:09 +00:00
sha256 = "sha256-eGHgZm9Q6JnY6OQNAyrFvRsuyuFnruMJNckOCCiO4Ug=";
2019-02-05 20:25:46 +00:00
};
nativeBuildInputs = [
desktop-file-utils
2019-02-05 20:25:46 +00:00
meson
ninja
pkg-config
2019-02-05 20:25:46 +00:00
python3
vala
2019-02-05 20:25:46 +00:00
wrapGAppsHook
];
buildInputs = [
glib
glib-networking
gsettings-desktop-schemas
gtk3
json-glib
libgee
libsoup
libunity
pantheon.granite
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
2019-12-22 23:19:30 +00:00
passthru = {
updateScript = nix-update-script {
2019-12-22 23:19:30 +00:00
attrPath = pname;
};
};
meta = with lib; {
2019-02-05 20:25:46 +00:00
description = "Find the most beautiful wallpapers for your desktop";
homepage = "https://github.com/calo001/fondo";
2019-02-05 20:25:46 +00:00
license = licenses.agpl3Plus;
maintainers = with maintainers; [ worldofpeace ];
platforms = platforms.linux;
};
}