summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/raspberrypi
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-12-24 14:53:04 -0500
committerFlorian Klink <flokli@flokli.de>2020-12-27 17:01:02 +0100
commit979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f (patch)
tree71fe2831c20d4d99ad943ae6ba5d90dd0236c408 /pkgs/os-specific/linux/firmware/raspberrypi
parent924d4615876f098a0f3c94b45c24a3aeb856748f (diff)
downloadnixpkgs-979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f.tar
nixpkgs-979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f.tar.gz
nixpkgs-979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f.tar.bz2
nixpkgs-979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f.tar.lz
nixpkgs-979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f.tar.xz
nixpkgs-979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f.tar.zst
nixpkgs-979a1e109fd4c978bc8b30c1bc7bb12a85df0a0f.zip
raspberrypi-tools: remove in favor of libraspberrypi
These packages were duplicated, and often weren't being updated in sync.
The only difference between them was the lack of pkg-config in
libraspberrypi, which is easily fixable.
Diffstat (limited to 'pkgs/os-specific/linux/firmware/raspberrypi')
-rw-r--r--pkgs/os-specific/linux/firmware/raspberrypi/tools.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/tools.nix b/pkgs/os-specific/linux/firmware/raspberrypi/tools.nix
deleted file mode 100644
index 79d6edcf94e..00000000000
--- a/pkgs/os-specific/linux/firmware/raspberrypi/tools.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, fetchFromGitHub, fetchpatch, cmake, pkgconfig }:
-
-stdenv.mkDerivation {
-  pname = "raspberrypi-tools";
-  version = "2020-05-28";
-
-  src = fetchFromGitHub {
-    owner = "raspberrypi";
-    repo = "userland";
-    rev = "f97b1af1b3e653f9da2c1a3643479bfd469e3b74";
-    sha256 = "1r7n05rv96hqjq0rn0qzchmfqs0j7vh3p8jalgh66s6l0vms5mwy";
-  };
-
-  nativeBuildInputs = [ cmake pkgconfig ];
-
-  patches = [
-    (fetchpatch {
-      # https://github.com/raspberrypi/userland/pull/670
-      url = "https://github.com/raspberrypi/userland/pull/670/commits/37cb44f314ab1209fe2a0a2449ef78893b1e5f62.patch";
-      sha256 = "1fbrbkpc4cc010ji8z4ll63g17n6jl67kdy62m74bhlxn72gg9rw";
-    })
-  ];
-
-  preConfigure = ''
-    cmakeFlagsArray+=("-DVMCS_INSTALL_PREFIX=$out")
-  '' + stdenv.lib.optionalString stdenv.isAarch64 ''
-    cmakeFlagsArray+=("-DARM64=1")
-  '';
-
-  meta = with stdenv.lib; {
-    description = "Userland tools for the Raspberry Pi board";
-    homepage = "https://github.com/raspberrypi/userland";
-    license = licenses.bsd3;
-    platforms = [ "x86_64-linux" "armv6l-linux" "armv7l-linux" "aarch64-linux" ];
-    maintainers = with maintainers; [ dezgeg tavyc ];
-  };
-}