nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation (finalAttrs: {
8 pname = "basez";
9 version = "1.6.2";
10
11 src = fetchurl {
12 url = "http://www.quarkline.net/basez/download/basez-${finalAttrs.version}.tar.gz";
13 sha256 = "sha256-Kp+CFIh5HCdj7wEgx1xD3IPdFlZ7fEFvMDMYif1ZiTc=";
14 };
15
16 doCheck = true;
17
18 meta = {
19 description = "Base 16/32/64 encode/decode data to standard output";
20 longDescription = ''
21 Encode data into/decode data from base16, base32, base32hex, base64 or
22 base64url stream per RFC 4648; MIME base64 Content-Transfer-Encoding
23 per RFC 2045; or PEM Printable Encoding per RFC 1421.
24 '';
25 homepage = "http://www.quarkline.net/basez/";
26 license = lib.licenses.gpl3Plus;
27 maintainers = [ lib.maintainers.oaksoaj ];
28 platforms = lib.platforms.all;
29 };
30})