nixpkgs/pkgs/tools/filesystems/go-mtpfs/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

21 lines
473 B
Nix

{ pkgconfig, libusb1, buildGoPackage, fetchgit }:
buildGoPackage rec {
pname = "go-mtpfs";
version = "2018-02-09";
rev = "d6f8f3c05ce0ed31435057ec342268a0735863bb";
goPackagePath = "github.com/hanwen/go-mtpfs";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libusb1 ];
src = fetchgit {
inherit rev;
url = "https://github.com/hanwen/go-mtpfs";
sha256 = "0a0d5dy92nzp1czh87hx3xfdcpa4jh14j0b64c025ha62s9a4gxk";
};
goDeps = ./deps.nix;
}