lol

Merge pull request #229565 from zendo/up/obfuscate

gnome-obfuscate: 0.0.7 -> 0.0.9

authored by

Sandro and committed by
GitHub
acdf9620 14f0233d

+9 -15
+9 -15
pkgs/applications/graphics/gnome-obfuscate/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitLab 4 - 5 4 , gettext 6 5 , meson 7 6 , ninja 8 7 , pkg-config 9 - , python3 10 8 , rustPlatform 11 9 , wrapGAppsHook4 12 - 13 10 , appstream-glib 14 11 , desktop-file-utils 15 12 , glib 16 13 , gtk4 14 + , gdk-pixbuf 17 15 , libadwaita 18 16 , Foundation 19 17 }: 20 18 21 19 stdenv.mkDerivation rec { 22 20 pname = "gnome-obfuscate"; 23 - version = "0.0.7"; 21 + version = "0.0.9"; 24 22 25 23 src = fetchFromGitLab { 26 24 domain = "gitlab.gnome.org"; 27 25 owner = "World"; 28 26 repo = "Obfuscate"; 29 27 rev = version; 30 - sha256 = "sha256-jEMOg2yHi6K57XhA/7hkwwvedmikoB8pGV3ka+jixq8="; 28 + hash = "sha256-aUhzact437V/bSsG2Ddu2mC03LbyXFg+hJiuGy5NQfQ="; 31 29 }; 32 30 33 31 cargoDeps = rustPlatform.fetchCargoTarball { 34 32 inherit src; 35 33 name = "${pname}-${version}"; 36 - sha256 = "sha256-P04BeidLXouPLzT/vsa4VC5AOENF0W4gqXqzdmRFhmE="; 34 + hash = "sha256-HUQvdCmzjdmuJGDLtC/86yzbRimLzx+XbW29f+Ua48w="; 37 35 }; 38 36 39 37 nativeBuildInputs = [ 40 38 gettext 41 - glib 42 39 meson 43 40 ninja 44 41 pkg-config 45 - python3 46 42 rustPlatform.cargoSetupHook 47 43 rustPlatform.rust.cargo 48 44 rustPlatform.rust.rustc 49 45 wrapGAppsHook4 46 + appstream-glib 47 + desktop-file-utils 50 48 ]; 51 49 52 50 buildInputs = [ 53 - appstream-glib 54 - desktop-file-utils 55 51 glib 56 52 gtk4 53 + gdk-pixbuf 57 54 libadwaita 58 55 ] ++ lib.optionals stdenv.isDarwin [ 59 56 Foundation 60 57 ]; 61 58 62 - postPatch = '' 63 - patchShebangs build-aux/meson_post_install.py 64 - ''; 65 - 66 59 meta = with lib; { 67 60 description = "Censor private information"; 68 61 homepage = "https://gitlab.gnome.org/World/obfuscate"; 69 62 license = licenses.gpl3Plus; 63 + platforms = platforms.all; 64 + mainProgram = "obfuscate"; 70 65 maintainers = with maintainers; [ fgaz ]; 71 - platforms = platforms.all; 72 66 }; 73 67 }