zine: init at 0.6.0

This commit is contained in:
Mostly Void 2022-08-05 16:23:43 +05:30
parent cda43cbf79
commit ed0ce6d539
No known key found for this signature in database
GPG Key ID: E2B7342D0CAA82C2
3 changed files with 2760 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,36 @@
{ lib
, stdenv
, fetchFromGitHub
, rustPlatform
, pkg-config
, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "zine";
version = "0.6.0";
src = fetchFromGitHub {
owner = "zineland";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Pd/UAg6O9bOvrdvbY46Vf8cxFzjonEwcwPaaW59vH6E=";
};
cargoPatches = [ ./Cargo.lock.patch ]; # Repo does not provide Cargo.lock
cargoSha256 = "sha256-qpzBDyNSZblmdimnnL4T/wS+6EXpduJ1U2+bfxM7piM=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
openssl
];
meta = with lib; {
description = "A simple and opinionated tool to build your own magazine";
homepage = "https://github.com/zineland/zine";
license = licenses.asl20;
maintainers = with maintainers; [ dit7ya ];
};
}

View File

@ -31807,6 +31807,8 @@ with pkgs;
zim = callPackage ../applications/office/zim { };
zine = callPackage ../applications/misc/zine { };
zita-ajbridge = callPackage ../applications/audio/zita-ajbridge { };
zita-at1 = callPackage ../applications/audio/zita-at1 { };