nixpkgs/pkgs/tools/misc/bdf2sfd/default.nix

24 lines
537 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2020-02-13 06:04:26 +00:00
stdenv.mkDerivation rec {
pname = "bdf2sfd";
2021-02-13 22:36:30 +00:00
version = "1.1.6";
2020-02-13 06:04:26 +00:00
src = fetchFromGitHub {
owner = "fcambus";
repo = pname;
rev = version;
2021-02-13 22:36:30 +00:00
sha256 = "sha256-f3IdTk1GEo1GlbiJMCpqwheNJrndm7aCojA+GuKMTao=";
2020-02-13 06:04:26 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
2020-02-13 06:04:26 +00:00
description = "BDF to SFD converter";
homepage = "https://github.com/fcambus/bdf2sfd";
license = licenses.bsd2;
2020-07-18 09:20:00 +00:00
platforms = platforms.all;
2020-02-13 06:04:26 +00:00
maintainers = with maintainers; [ dtzWill ];
};
}