Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 553 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "bdf2sfd"; 10 version = "1.1.9"; 11 12 src = fetchFromGitHub { 13 owner = "fcambus"; 14 repo = "bdf2sfd"; 15 rev = version; 16 sha256 = "sha256-L1fIPZdVP4px73VbnEA6sb28WrmsNUJ2tqLeGPpwDbA="; 17 }; 18 19 nativeBuildInputs = [ cmake ]; 20 21 meta = with lib; { 22 description = "BDF to SFD converter"; 23 homepage = "https://github.com/fcambus/bdf2sfd"; 24 license = licenses.bsd2; 25 platforms = platforms.all; 26 maintainers = [ ]; 27 mainProgram = "bdf2sfd"; 28 }; 29}