nixpkgs/pkgs/os-specific/linux/gobi_loader/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
838 B
Nix
Raw Normal View History

{ lib, stdenv
2019-11-20 01:23:14 +03:00
, 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"}" ];
2019-11-20 01:23:14 +03:00
meta = with lib; {
2019-11-20 01:23:14 +03:00
description = "Firmware loader for Qualcomm Gobi USB chipsets";
homepage = "https://www.codon.org.uk/~mjg59/gobi_loader/";
license = with licenses; [ gpl2 ];
2020-07-29 13:49:07 +03:00
maintainers = with maintainers; [ _0x4A6F ];
2019-11-20 01:23:14 +03:00
platforms = platforms.linux;
};
}