add Nix build file
This commit is contained in:
parent
7c97342e53
commit
1ab522f02b
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
pkgs.stdenv.mkDerivation {
|
||||||
|
pname = "labelprinter";
|
||||||
|
version = "1.0";
|
||||||
|
buildInputs = [ pkgs.pkgconfig pkgs.libusb ];
|
||||||
|
src = ./.;
|
||||||
|
};
|
Loading…
Reference in New Issue