nixpkgs/pkgs/tools/text/base16384/default.nix

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

28 lines
573 B
Nix
Raw Normal View History

2023-05-08 15:06:50 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "base16384";
2023-09-02 01:25:50 +00:00
version = "2.2.5";
2023-05-08 15:06:50 +00:00
src = fetchFromGitHub {
owner = "fumiama";
repo = pname;
rev = "v${version}";
2023-09-02 01:25:50 +00:00
hash = "sha256-S9DA9C+6OJcSLJTSLRo9rolJO9yVQ0FOE7uwbvmJiGk=";
2023-05-08 15:06:50 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Encode binary files to printable utf16be";
homepage = "https://github.com/fumiama/base16384";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ aleksana ];
platforms = platforms.all;
};
}