nixpkgs/pkgs/by-name/el/elastic/package.nix
seth e1c234e5e2
treewide: add updateScript to gnome circle packages (#367823)
* decoder: remove gnome circle team from maintainers

This was mistakenly placed here instead of in `gnome-decoder`

* gnome-decoder: add gnome circle team to maintainers

* treewide: add updateScript to gnome circle packages
2024-12-28 18:24:45 -05:00

62 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitLab
, meson
, ninja
, pkg-config
, vala
, gtk4
, libgee
, libadwaita
, gtksourceview5
, blueprint-compiler
, wrapGAppsHook4
, desktop-file-utils
, template-glib
, nix-update-script
}:
stdenv.mkDerivation rec {
pname = "elastic";
version = "0.1.6";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "World";
repo = "elastic";
rev = version;
hash = "sha256-D7DqSBP0E0CzjTROh97JXhB8N8q0I2pDo4HbAK8vQ/Y=";
};
nativeBuildInputs = [
meson
ninja
vala
pkg-config
wrapGAppsHook4
desktop-file-utils
blueprint-compiler
];
buildInputs = [
gtk4
libadwaita
libgee
gtksourceview5
template-glib
];
passthru = {
updateScript = nix-update-script { };
};
meta = with lib; {
description = "Design spring animations";
homepage = "https://gitlab.gnome.org/World/elastic/";
mainProgram = "app.drey.Elastic";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ _0xMRTT ] ++ lib.teams.gnome-circle.members;
};
}