mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 04:34:46 +00:00
Merge pull request #274497 from trofi/btrfs-progs-update
btrfs-progs: 6.6.2 -> 6.6.3
This commit is contained in:
commit
51cf6a2428
@ -1,5 +1,5 @@
|
||||
{ lib, stdenv, fetchurl
|
||||
, pkg-config, sphinx
|
||||
, pkg-config, python3
|
||||
, zstd
|
||||
, acl, attr, e2fsprogs, libuuid, lzo, udev, zlib
|
||||
, runCommand, btrfs-progs
|
||||
@ -9,17 +9,20 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "btrfs-progs";
|
||||
version = "6.6.2";
|
||||
version = "6.6.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz";
|
||||
hash = "sha256-tCZzbclOKwS2mD6ZjE3EJ9wWbWbd6iRsiQ7ZwqRQBE8=";
|
||||
hash = "sha256-9BzlP2Zz/1Ue5KP+fclgHloN3mttCRd9H6ticYq8bZo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
] ++ [
|
||||
sphinx
|
||||
(python3.withPackages (ps: with ps; [
|
||||
sphinx
|
||||
sphinx-rtd-theme
|
||||
]))
|
||||
];
|
||||
|
||||
buildInputs = [ acl attr e2fsprogs libuuid lzo udev zlib zstd ];
|
||||
|
Loading…
Reference in New Issue
Block a user