summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix2
-rw-r--r--pkgs/equibop.nix28
2 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index f5229fe..eeeb5a7 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -18,6 +18,4 @@
   wine = pkgs.callPackage ./wine.nix { };
 
   yubikey-touch-detector = pkgs.callPackage ./yubikey-touch-detector { };
-
-  equibop = pkgs.callPackage ./equibop.nix { };
 }
diff --git a/pkgs/equibop.nix b/pkgs/equibop.nix
deleted file mode 100644
index 2e3c3e3..0000000
--- a/pkgs/equibop.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
-  equibop,
-  imagemagick,
-  ...
-}:
-
-equibop.overrideAttrs (
-  final: prev: {
-    nativeBuildInputs = prev.nativeBuildInputs ++ [
-      imagemagick
-    ];
-
-    postBuild =
-      prev.postBuild
-      + ''
-        pushd build
-
-        for size in 16 24 32 48 64 128 256 512 1024; do
-          mkdir -pv $out/share/icons/hicolor/"$size"x"$size"/apps
-          if [ ! -e icon_"$size"x"$size"x32.png ] ; then
-          convert -resize "$size"x"$size" icon_1024x1024x32.png icon_"$size"x"$size"x32.png
-          fi
-        done;
-
-        popd
-      '';
-  }
-)