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

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

25 lines
566 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake }:
2020-02-13 06:04:26 +00:00
stdenv.mkDerivation rec {
pname = "bdf2sfd";
2023-03-31 17:33:25 +00:00
version = "1.1.8";
2020-02-13 06:04:26 +00:00
src = fetchFromGitHub {
owner = "fcambus";
repo = pname;
rev = version;
2023-03-31 17:33:25 +00:00
sha256 = "sha256-+CPULpy3mqZv0QaXS4kKYWKjifibtcQt7unKGOUTSV0=";
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 ];
2023-11-27 01:17:53 +00:00
mainProgram = "bdf2sfd";
2020-02-13 06:04:26 +00:00
};
}