summary refs log tree commit diff
path: root/pkgs/tools/misc/bdf2sfd
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2020-02-13 00:04:26 -0600
committerWill Dietz <w@wdtz.org>2020-02-13 00:09:33 -0600
commitff638c0afc278655ce15a6041041448e783bb7d2 (patch)
treeb9bc6881079c989727f3991085afc948cbe584ad /pkgs/tools/misc/bdf2sfd
parent3749a8c10e5704457daa690b0e8cae256a8e3729 (diff)
downloadnixpkgs-ff638c0afc278655ce15a6041041448e783bb7d2.tar
nixpkgs-ff638c0afc278655ce15a6041041448e783bb7d2.tar.gz
nixpkgs-ff638c0afc278655ce15a6041041448e783bb7d2.tar.bz2
nixpkgs-ff638c0afc278655ce15a6041041448e783bb7d2.tar.lz
nixpkgs-ff638c0afc278655ce15a6041041448e783bb7d2.tar.xz
nixpkgs-ff638c0afc278655ce15a6041041448e783bb7d2.tar.zst
nixpkgs-ff638c0afc278655ce15a6041041448e783bb7d2.zip
bdf2sfd: init at 1.1.0
Diffstat (limited to 'pkgs/tools/misc/bdf2sfd')
-rw-r--r--pkgs/tools/misc/bdf2sfd/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/misc/bdf2sfd/default.nix b/pkgs/tools/misc/bdf2sfd/default.nix
new file mode 100644
index 00000000000..deb88f70eb5
--- /dev/null
+++ b/pkgs/tools/misc/bdf2sfd/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchFromGitHub, cmake }:
+
+stdenv.mkDerivation rec {
+  pname = "bdf2sfd";
+  version = "1.1.0";
+
+  src = fetchFromGitHub {
+    owner = "fcambus";
+    repo = pname;
+    rev = version;
+    sha256 = "130kaw2485qhb2171w2i9kpl1lhbkfwdz3j19cy63xk63fhyd8kb";
+  };
+
+  nativeBuildInputs = [ cmake ];
+
+  meta = with stdenv.lib; {
+    description = "BDF to SFD converter";
+    homepage = "https://github.com/fcambus/bdf2sfd";
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ dtzWill ];
+  };
+}