about summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authormaralorn <mail@maralorn.de>2024-03-02 22:30:01 +0100
committerGitHub <noreply@github.com>2024-03-02 22:30:01 +0100
commitde9600d4cad623df34fa4925c92cd2404ce5fd52 (patch)
tree5da381fb5f63ac1b3f79468eaa2a12ca9055b326 /pkgs/tools/misc
parent62b87abffcd8f9769aaa949a9c0ec91cd5878aa3 (diff)
parent18cf4d44dc8113007d75c83b71384befb7a32d2b (diff)
downloadnixlib-de9600d4cad623df34fa4925c92cd2404ce5fd52.tar
nixlib-de9600d4cad623df34fa4925c92cd2404ce5fd52.tar.gz
nixlib-de9600d4cad623df34fa4925c92cd2404ce5fd52.tar.bz2
nixlib-de9600d4cad623df34fa4925c92cd2404ce5fd52.tar.lz
nixlib-de9600d4cad623df34fa4925c92cd2404ce5fd52.tar.xz
nixlib-de9600d4cad623df34fa4925c92cd2404ce5fd52.tar.zst
nixlib-de9600d4cad623df34fa4925c92cd2404ce5fd52.zip
Merge pull request #292592 from felixsinger/pkgs/flashprog
Rename package flashrom-stable to flashprog
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/flashrom-stable/default.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/tools/misc/flashrom-stable/default.nix b/pkgs/tools/misc/flashrom-stable/default.nix
deleted file mode 100644
index 81beb2346e34..000000000000
--- a/pkgs/tools/misc/flashrom-stable/default.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ fetchgit
-, installShellFiles
-, lib
-, libftdi1
-, libgpiod_1
-, libjaylink
-, libusb1
-, pciutils
-, pkg-config
-, stdenv
-}:
-
-stdenv.mkDerivation rec {
-  pname = "flashrom-stable";
-  version = "1.1";
-
-  src = fetchgit {
-    url = "https://review.coreboot.org/flashrom-stable";
-    rev = "272aae888ce5abf5e999d750ee4577407db32246";
-    hash = "sha256-DR4PAING69+TMsyycGxt1cu0ba1tTlG36+H/pJ0oP4E=";
-  };
-
-  nativeBuildInputs = [
-    installShellFiles
-    pkg-config
-  ];
-
-  buildInputs = [
-    libftdi1
-    libjaylink
-    libusb1
-  ] ++ lib.optionals (!stdenv.isDarwin) [
-    libgpiod_1
-    pciutils
-  ];
-
-  makeFlags = [ "PREFIX=$(out)" "libinstall" ] ++ lib.optionals stdenv.isDarwin [ "CONFIG_ENABLE_LIBPCI_PROGRAMMERS=no" ]
-    ++ lib.optionals (stdenv.isDarwin && stdenv.isx86_64) [ "CONFIG_INTERNAL_X86=no" "CONFIG_INTERNAL_DMI=no" "CONFIG_RAYER_SPI=0" ];
-
-  meta = with lib; {
-    homepage = "https://www.flashrom.org";
-    description = "Utility for reading, writing, erasing and verifying flash ROM chips";
-    license = with licenses; [ gpl2 gpl2Plus ];
-    maintainers = with maintainers; [ felixsinger ];
-    platforms = platforms.all;
-    mainProgram = "flashrom";
-  };
-}