linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / bdf2sfd / default.nix
blob735508fed216e7b1e47321bc4f8cb1bb2a97bb78
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "bdf2sfd";
5   version = "1.1.6";
7   src = fetchFromGitHub {
8     owner = "fcambus";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-f3IdTk1GEo1GlbiJMCpqwheNJrndm7aCojA+GuKMTao=";
12   };
14   nativeBuildInputs = [ cmake ];
16   meta = with lib; {
17     description = "BDF to SFD converter";
18     homepage = "https://github.com/fcambus/bdf2sfd";
19     license = licenses.bsd2;
20     platforms = platforms.all;
21     maintainers = with maintainers; [ dtzWill ];
22   };