Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
47 lines
936 B
Nix
47 lines
936 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, gtk4
|
|
, libadwaita
|
|
, libportal
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, stdenv
|
|
, vala
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "clairvoyant";
|
|
version = "3.1.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cassidyjames";
|
|
repo = "clairvoyant";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-SksJ0hOt2CJwrQj4dz63D53GM/PYx7Q/g+OgCo76dIE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
vala
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
libadwaita
|
|
libportal
|
|
];
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/cassidyjames/clairvoyant/releases/tag/${finalAttrs.version}";
|
|
description = "Ask questions, get psychic answers";
|
|
homepage = "https://github.com/cassidyjames/clairvoyant";
|
|
license = licenses.gpl3Plus;
|
|
mainProgram = "com.github.cassidyjames.clairvoyant";
|
|
maintainers = with maintainers; [ michaelgrahamevans ];
|
|
};
|
|
})
|