Files

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

30 lines
553 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "bdf2sfd";
version = "1.1.9";
src = fetchFromGitHub {
owner = "fcambus";
repo = "bdf2sfd";
tag = version;
sha256 = "sha256-L1fIPZdVP4px73VbnEA6sb28WrmsNUJ2tqLeGPpwDbA=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "BDF to SFD converter";
homepage = "https://github.com/fcambus/bdf2sfd";
license = licenses.bsd2;
platforms = platforms.all;
maintainers = [ ];
mainProgram = "bdf2sfd";
};
}