about summary refs log tree commit diff
path: root/pkgs/development/tools/bin2c/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/bin2c/default.nix')
-rw-r--r--pkgs/development/tools/bin2c/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/tools/bin2c/default.nix b/pkgs/development/tools/bin2c/default.nix
deleted file mode 100644
index 2528b1ea0961..000000000000
--- a/pkgs/development/tools/bin2c/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, util-linux
-}:
-
-stdenv.mkDerivation {
-  pname = "bin2c";
-  version = "unstable-2020-05-30";
-
-  src = fetchFromGitHub {
-    owner = "adobe";
-    repo = "bin2c";
-    rev = "4300880a350679a808dc05bdc2840368f5c24d9a";
-    sha256 = "sha256-PLo5kkN2k3KutVGumoXEB2x9MdxDUtpwAQZLwm4dDvw=";
-  };
-
-  makeFlags = [ "prefix=$(out)" ];
-
-  doCheck = !stdenv.isDarwin;
-  checkTarget = "test";
-  checkInputs = [ util-linux ]; # uuidgen
-
-  meta = with lib; {
-    description = "Embed binary & text files inside C binaries";
-    mainProgram = "bin2c";
-    homepage = "https://github.com/adobe/bin2c";
-    license = licenses.asl20;
-    maintainers = [ maintainers.shadowrz ];
-    platforms = platforms.all;
-  };
-}