nixpkgs/pkgs/tools/misc/bdf2sfd/default.nix
2021-02-13 22:36:30 +00:00

24 lines
537 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "bdf2sfd";
version = "1.1.6";
src = fetchFromGitHub {
owner = "fcambus";
repo = pname;
rev = version;
sha256 = "sha256-f3IdTk1GEo1GlbiJMCpqwheNJrndm7aCojA+GuKMTao=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "BDF to SFD converter";
homepage = "https://github.com/fcambus/bdf2sfd";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = with maintainers; [ dtzWill ];
};
}