about summary refs log tree commit diff
path: root/pkgs/applications/misc/zine/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/zine/default.nix')
-rw-r--r--pkgs/applications/misc/zine/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/applications/misc/zine/default.nix b/pkgs/applications/misc/zine/default.nix
deleted file mode 100644
index c7fb80e8318b..000000000000
--- a/pkgs/applications/misc/zine/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib
-, rustPlatform
-, fetchCrate
-, pkg-config
-, openssl
-, stdenv
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "zine";
-  version = "0.16.0";
-
-  src = fetchCrate {
-    inherit pname version;
-    hash = "sha256-pUoMMgZQ+oDs9Yhc1rQuy9cUWiR800DlIe8wxQjnIis=";
-  };
-
-  cargoHash = "sha256-dXq8O0jVpr0xxvLTrsLJbiyyOMXXtEz7OMINqDEfG4U=";
-
-  nativeBuildInputs = [
-    pkg-config
-  ];
-
-  buildInputs = [
-    openssl
-  ] ++ lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.CoreServices
-  ];
-
-  meta = with lib; {
-    description = "Simple and opinionated tool to build your own magazine";
-    homepage = "https://github.com/zineland/zine";
-    changelog = "https://github.com/zineland/zine/releases/tag/v${version}";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ dit7ya figsoda ];
-    mainProgram = "zine";
-  };
-}