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";
2022-01-31 17:34:58 +00:00
version = "1.1.7";
2020-02-13 06:04:26 +00:00
src = fetchFromGitHub {
owner = "fcambus";
repo = pname;
rev = version;
2022-01-31 17:34:58 +00:00
sha256 = "sha256-q+FLmu2JCDTJ6zC8blkd27jAKWbNpPyKzmUj1bW1mfA=";
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 ];
};
}