Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

elastic: init at 0.1.3 (#226428)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by 0xMRTT Sandro and committed by GitHub d3b42598 c8981de1

+67
+7
maintainers/maintainer-list.nix
··· 101 101 github = "0xd61"; 102 102 githubId = 8351869; 103 103 }; 104 + _0xMRTT = { 105 + email = "0xMRTT@proton.me"; 106 + name = "0xMRTT"; 107 + github = "0xMRTT"; 108 + githubId = 105598867; 109 + matrix = "@0xmrtt:envs.net"; 110 + }; 104 111 _1000101 = { 105 112 email = "b1000101@pm.me"; 106 113 github = "1000101";
+58
pkgs/applications/misc/elastic/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + , meson 5 + , ninja 6 + , pkg-config 7 + , vala 8 + , gtk4 9 + , libgee 10 + , libadwaita 11 + , gtksourceview5 12 + , blueprint-compiler 13 + , wrapGAppsHook4 14 + , appstream-glib 15 + , desktop-file-utils 16 + , template-glib 17 + }: 18 + 19 + stdenv.mkDerivation rec { 20 + pname = "elastic"; 21 + version = "0.1.3"; 22 + 23 + src = fetchFromGitLab { 24 + domain = "gitlab.gnome.org"; 25 + owner = "World"; 26 + repo = "elastic"; 27 + rev = version; 28 + hash = "sha256-CZ+EeGbCzkeNx4GD+2+n3jYwz/cQStjMV2+wm/JNsYU="; 29 + }; 30 + 31 + nativeBuildInputs = [ 32 + meson 33 + ninja 34 + vala 35 + pkg-config 36 + wrapGAppsHook4 37 + appstream-glib 38 + desktop-file-utils 39 + blueprint-compiler 40 + ]; 41 + 42 + buildInputs = [ 43 + gtk4 44 + libadwaita 45 + libgee 46 + gtksourceview5 47 + template-glib 48 + ]; 49 + 50 + meta = with lib; { 51 + description = "Design spring animations"; 52 + homepage = "https://gitlab.gnome.org/World/elastic/"; 53 + mainProgram = "app.drey.Elastic"; 54 + license = licenses.gpl3Plus; 55 + platforms = platforms.unix; 56 + maintainers = with maintainers; [ _0xMRTT ]; 57 + }; 58 + }
+2
pkgs/top-level/all-packages.nix
··· 7652 7652 texinfo = texinfo6_7; # Uses @setcontentsaftertitlepage, removed in 6.8. 7653 7653 }; 7654 7654 7655 + elastic = callPackage ../applications/misc/elastic { }; 7656 + 7655 7657 exfat = callPackage ../tools/filesystems/exfat { }; 7656 7658 7657 7659 exfatprogs = callPackage ../tools/filesystems/exfatprogs { };