nixpkgs/pkgs/development/nim-packages/zippy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
524 B
Nix
Raw Normal View History

{ lib, buildNimPackage, fetchFromGitHub, unzip }:
2021-09-02 17:03:01 +00:00
buildNimPackage rec {
2021-09-02 17:03:01 +00:00
pname = "zippy";
version = "0.7.3";
nativeBuildInputs = [ unzip ];
src = fetchFromGitHub {
owner = "guzba";
repo = pname;
rev = version;
hash = "sha256-w64ENRyP3mNTtESSt7CDDxUkjYSfziNVVedkO4HIuJ8=";
};
doCheck = true;
meta = with lib;
src.meta // {
description = "Pure Nim implementation of deflate, zlib, gzip and zip";
license = [ licenses.mit ];
maintainers = [ maintainers.ehmry ];
};
2021-09-02 17:03:01 +00:00
}