zine: init at 0.6.0
This commit is contained in:
parent
cda43cbf79
commit
ed0ce6d539
3 changed files with 2760 additions and 0 deletions
2722
pkgs/applications/misc/zine/Cargo.lock.patch
Normal file
2722
pkgs/applications/misc/zine/Cargo.lock.patch
Normal file
File diff suppressed because it is too large
Load diff
36
pkgs/applications/misc/zine/default.nix
Normal file
36
pkgs/applications/misc/zine/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -31807,6 +31807,8 @@ with pkgs;
|
||||||
|
|
||||||
zim = callPackage ../applications/office/zim { };
|
zim = callPackage ../applications/office/zim { };
|
||||||
|
|
||||||
|
zine = callPackage ../applications/misc/zine { };
|
||||||
|
|
||||||
zita-ajbridge = callPackage ../applications/audio/zita-ajbridge { };
|
zita-ajbridge = callPackage ../applications/audio/zita-ajbridge { };
|
||||||
|
|
||||||
zita-at1 = callPackage ../applications/audio/zita-at1 { };
|
zita-at1 = callPackage ../applications/audio/zita-at1 { };
|
||||||
|
|
Loading…
Reference in a new issue