summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/graphics/dippi/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/graphics/dippi/default.nix')
-rw-r--r--pkgs/tools/graphics/dippi/default.nix64
1 files changed, 64 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/dippi/default.nix b/pkgs/tools/graphics/dippi/default.nix
new file mode 100644
index 000000000000..9c037d6d4a9f
--- /dev/null
+++ b/pkgs/tools/graphics/dippi/default.nix
@@ -0,0 +1,64 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, meson
+, ninja
+, pkg-config
+, python3
+, vala
+, glib
+, gtk3
+, gtk4
+, libadwaita
+, wrapGAppsHook4
+, appstream-glib
+, desktop-file-utils
+}:
+
+stdenv.mkDerivation rec {
+ pname = "dippi";
+ version = "4.0.0";
+
+ src = fetchFromGitHub {
+ owner = "cassidyjames";
+ repo = "dippi";
+ rev = version;
+ hash = "sha256-6eZRz3/LaZwy8DzC/8q9Jrebcx86hHri6KBgThU7Dhw=";
+ };
+
+ nativeBuildInputs = [
+ meson
+ ninja
+ vala
+ pkg-config
+ wrapGAppsHook4
+ appstream-glib
+ desktop-file-utils
+ # For post_install.py
+ python3
+ glib
+ gtk3
+ ];
+
+ buildInputs = [
+ glib
+ gtk4
+ libadwaita
+ ];
+
+ postPatch = ''
+ patchShebangs build-aux/meson/post_install.py
+ '';
+
+ postInstall = ''
+ ln -s $out/bin/com.github.cassidyjames.dippi $out/bin/dippi
+ '';
+
+ meta = with lib; {
+ description = "Calculate display info like DPI and aspect ratio";
+ homepage = "https://github.com/cassidyjames/dippi";
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ zendo ];
+ };
+}