gobi_loader: init at 0.7
This commit is contained in:
parent
2e52f98ddb
commit
c97f57ef96
2 changed files with 25 additions and 0 deletions
23
pkgs/os-specific/linux/gobi_loader/default.nix
Normal file
23
pkgs/os-specific/linux/gobi_loader/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ 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";
|
||||
};
|
||||
|
||||
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 = with maintainers; [ "0x4A6F" ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -15802,6 +15802,8 @@ in
|
|||
|
||||
fwts = callPackage ../os-specific/linux/fwts { };
|
||||
|
||||
gobi_loader = callPackage ../os-specific/linux/gobi_loader { };
|
||||
|
||||
libossp_uuid = callPackage ../development/libraries/libossp-uuid { };
|
||||
|
||||
libuuid = if stdenv.isLinux
|
||||
|
|
Loading…
Reference in a new issue