mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
29 lines
831 B
Nix
29 lines
831 B
Nix
{ stdenv
|
|
, fetchurl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gobi_loader";
|
|
version = "0.7";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.codon.org.uk/~mjg59/gobi_loader/download/${pname}-${version}.tar.gz";
|
|
sha256 = "0jkmpqkiddpxrzl2s9s3kh64ha48m00nn53f82m1rphw8maw5gbq";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace 60-gobi.rules --replace "gobi_loader" "${placeholder "out"}/lib/udev/gobi_loader"
|
|
substituteInPlace 60-gobi.rules --replace "/lib/firmware" "/run/current-system/firmware"
|
|
'';
|
|
|
|
makeFlags = "prefix=${placeholder "out"}";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Firmware loader for Qualcomm Gobi USB chipsets";
|
|
homepage = "https://www.codon.org.uk/~mjg59/gobi_loader/";
|
|
license = with licenses; [ gpl2 ];
|
|
maintainers = [ maintainers."0x4A6F" ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|