Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {stdenv, fetchgit, pkgs, pkg-config}:
- with (import <nixpkgs> {});
- stdenv.mkDerivation {
- name = "minipro";
- src = fetchgit {
- url = "https://gitlab.com/DavidGriffith/minipro.git";
- sha256 = "1jz85vzg5bb20hfyy5gbhj4v5n5iwc5rpcmpmx342q2g12zjqdsf";
- };
- PKG_CONFIG = "${pkg-config}/bin/pkg-config";
- nativeBuildInputs = with pkgs; [
- pkg-config
- installShellFiles
- ];
- buildInputs = with pkgs; [
- stdenv
- bash
- libusb1
- ];
- buildPhase = ''
- make -e
- '';
- meta = {
- description = "";
- homepage = "https://gitlab.com/DavidGriffith/minipro";
- maintainers = [ import ./kalium.nix ];
- license = stdenv.lib.licenses.gpl3;
- };
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement