mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
d3b42598eb
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
59 lines
1011 B
Nix
59 lines
1011 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, vala
|
|
, gtk4
|
|
, libgee
|
|
, libadwaita
|
|
, gtksourceview5
|
|
, blueprint-compiler
|
|
, wrapGAppsHook4
|
|
, appstream-glib
|
|
, desktop-file-utils
|
|
, template-glib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "elastic";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = "elastic";
|
|
rev = version;
|
|
hash = "sha256-CZ+EeGbCzkeNx4GD+2+n3jYwz/cQStjMV2+wm/JNsYU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
vala
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
appstream-glib
|
|
desktop-file-utils
|
|
blueprint-compiler
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
libadwaita
|
|
libgee
|
|
gtksourceview5
|
|
template-glib
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|