summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-05 12:01:59 -0400
committerGitHub <noreply@github.com>2019-08-05 12:01:59 -0400
commitb044b6814f64b2fcc628ed24fae9e7e01ce7f7af (patch)
tree6affe76d1b96c70852a16be104a8de5da0335983 /pkgs/tools/misc
parent29cde60208ce6cf343c68394cff5bd84b6e6944d (diff)
parentc91d616881aa57486cdfc88ffae1208ef3bacc29 (diff)
downloadnixpkgs-b044b6814f64b2fcc628ed24fae9e7e01ce7f7af.tar
nixpkgs-b044b6814f64b2fcc628ed24fae9e7e01ce7f7af.tar.gz
nixpkgs-b044b6814f64b2fcc628ed24fae9e7e01ce7f7af.tar.bz2
nixpkgs-b044b6814f64b2fcc628ed24fae9e7e01ce7f7af.tar.lz
nixpkgs-b044b6814f64b2fcc628ed24fae9e7e01ce7f7af.tar.xz
nixpkgs-b044b6814f64b2fcc628ed24fae9e7e01ce7f7af.tar.zst
nixpkgs-b044b6814f64b2fcc628ed24fae9e7e01ce7f7af.zip
Merge pull request #65914 from worldofpeace/update/elementary-appcenter
Update pantheon appcenter apps
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/hashit/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/tools/misc/hashit/default.nix b/pkgs/tools/misc/hashit/default.nix
index b773fc5d680..6d928524713 100644
--- a/pkgs/tools/misc/hashit/default.nix
+++ b/pkgs/tools/misc/hashit/default.nix
@@ -1,32 +1,31 @@
-{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, pantheon, python3, gnome3, gtk3, gobject-introspection, desktop-file-utils, wrapGAppsHook }:
+{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, pantheon, python3, libgee, gtk3, desktop-file-utils, wrapGAppsHook }:
 
 stdenv.mkDerivation rec {
   pname = "hashit";
-  version = "1.0.0";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "artemanufrij";
     repo = pname;
     rev = version;
-    sha256 = "1ba38qmwdk7vkarsxqn89irbymzx52gbks4isx0klg880xm2z4dv";
+    sha256 = "1s8fbzg1z2ypn55xg1pfm5xh15waq55fkp49j8rsqiq8flvg6ybf";
   };
 
   nativeBuildInputs = [
     desktop-file-utils
-    gobject-introspection
     meson
     ninja
+    pantheon.vala
     pkgconfig
     python3
-    pantheon.vala
     wrapGAppsHook
   ];
 
   buildInputs = [
+    gtk3
+    libgee
     pantheon.elementary-icon-theme
-    gnome3.libgee
     pantheon.granite
-    gtk3
   ];
 
   postPatch = ''
@@ -35,10 +34,10 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with stdenv.lib; {
-    description = "A simple app for checking usual checksums";
+    description = "A simple app for checking usual checksums - Designed for elementary OS";
     homepage = https://github.com/artemanufrij/hashit;
     license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ worldofpeace ];
+    maintainers = pantheon.maintainers;
     platforms = platforms.linux;
   };
 }