3
0
Fork 0
forked from mirrors/nixpkgs

Fix btrfsprogs so nix detects the version

Currently, btrfsprogs is misdetected by nix such that it requires
specifying btrfs-progs-v3.12 for install instead of just btrfs-progs.
This patch removes the v so that it now reads btrfs-progs-3.12 and is
properly detected by nix.
This commit is contained in:
William A. Kennington III 2013-12-29 06:55:47 -06:00
parent 2ffab7ba6a
commit 88e4596ffd

View file

@ -1,7 +1,7 @@
{ stdenv, fetchurl, attr, acl, zlib, libuuid, e2fsprogs, lzo }:
stdenv.mkDerivation rec {
name = "btrfs-progs-v3.12";
name = "btrfs-progs-3.12";
src = fetchurl {
url = "mirror://kernel/linux/kernel/people/mason/btrfs-progs/${name}.tar.xz";