2019-06-16 21:59:06 +02:00
|
|
|
{ pkgconfig, libusb1, buildGoPackage, fetchgit }:
|
2016-06-03 13:50:07 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "go-mtpfs";
|
2019-01-09 19:42:33 +01:00
|
|
|
version = "2018-02-09";
|
|
|
|
rev = "d6f8f3c05ce0ed31435057ec342268a0735863bb";
|
2016-06-03 13:50:07 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/hanwen/go-mtpfs";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libusb1 ];
|
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev;
|
|
|
|
url = "https://github.com/hanwen/go-mtpfs";
|
2019-01-09 19:42:33 +01:00
|
|
|
sha256 = "0a0d5dy92nzp1czh87hx3xfdcpa4jh14j0b64c025ha62s9a4gxk";
|
2016-06-03 13:50:07 +02:00
|
|
|
};
|
|
|
|
|
2016-09-10 12:04:13 +02:00
|
|
|
goDeps = ./deps.nix;
|
2016-06-03 13:50:07 +02:00
|
|
|
}
|