about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/btrfs-progs
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-11-17 17:47:18 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2016-11-17 17:47:18 +0100
commit6f1308ba95bc627aa77893995570764c352ea22a (patch)
treef04c1a2f04e0857557a7f7edb59d5552dfbf2eac /pkgs/tools/filesystems/btrfs-progs
parent081686078535912a07a35f7853511da2c04f61e7 (diff)
downloadnixlib-6f1308ba95bc627aa77893995570764c352ea22a.tar
nixlib-6f1308ba95bc627aa77893995570764c352ea22a.tar.gz
nixlib-6f1308ba95bc627aa77893995570764c352ea22a.tar.bz2
nixlib-6f1308ba95bc627aa77893995570764c352ea22a.tar.lz
nixlib-6f1308ba95bc627aa77893995570764c352ea22a.tar.xz
nixlib-6f1308ba95bc627aa77893995570764c352ea22a.tar.zst
nixlib-6f1308ba95bc627aa77893995570764c352ea22a.zip
Revert "btrfs-progs: 4.8.2 -> 4.8.3"
This reverts commit e82c325bff0295ed4bbbd308fd4f99cdfd9ab515.

This package update breaks the `update-grub.pl` script:

    updating GRUB 2 menu...
    Btrfs did not return a path for the subvolume at /
    error: unable to activate new configuration

This backwards-incompatible change is the culprit:

    $ /nix/store/np25r3yzv2r41ji7v73j110inpj8lhn2-btrfs-progs-4.8.2/bin/btrfs subvol show /
    / is toplevel subvolume

vs.

    $ /nix/store/h53vs13nqvjwahpl26a4s7ygqk9xw1mw-btrfs-progs-4.8.3/bin/btrfs subvol show /
    /
    	Name: 			<FS_TREE>
    	UUID: 			-
    	Parent UUID: 		-
    	Received UUID: 		-
    	Creation time: 		-
    	Subvolume ID: 		5
    	Generation: 		6004631
    	Gen at creation: 	0
    	Parent ID: 		0
    	Top level ID: 		0
    	Flags: 			-
    	Snapshot(s):
Diffstat (limited to 'pkgs/tools/filesystems/btrfs-progs')
-rw-r--r--pkgs/tools/filesystems/btrfs-progs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/filesystems/btrfs-progs/default.nix b/pkgs/tools/filesystems/btrfs-progs/default.nix
index 0e7e6fbcdec2..525aa2fec28a 100644
--- a/pkgs/tools/filesystems/btrfs-progs/default.nix
+++ b/pkgs/tools/filesystems/btrfs-progs/default.nix
@@ -2,14 +2,14 @@
 , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt
 }:
 
-let version = "4.8.3"; in
+let version = "4.8.2"; in
 
 stdenv.mkDerivation rec {
   name = "btrfs-progs-${version}";
 
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz";
-    sha256 = "1wlflrygnpndppil9g12pk184f75g9qx1lkr0x1gijigglqhr9n1";
+    sha256 = "0pswcfmdnfc586770h74abp67gn2xv8fd46vxlimnmn837sj7h41";
   };
 
   buildInputs = [