summary refs log tree commit diff
path: root/pkgs/os-specific/linux/gobi_loader/default.nix
blob: b7972007719c9cc28d0b80f6fe115fa800f386ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, 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 lib; {
    description = "Firmware loader for Qualcomm Gobi USB chipsets";
    homepage = "https://www.codon.org.uk/~mjg59/gobi_loader/";
    license = with licenses; [ gpl2 ];
    maintainers = with maintainers; [ _0x4A6F ];
    platforms = platforms.linux;
  };
}