Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mtd-utils: 2.1.1 -> 2.1.2

+9 -10
+9 -10
pkgs/tools/filesystems/mtdutils/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mtd-utils"; 5 - version = "2.1.1"; 6 7 src = fetchurl { 8 url = "ftp://ftp.infradead.org/pub/${pname}/${pname}-${version}.tar.bz2"; 9 - sha256 = "1lijl89l7hljx8xx70vrz9srd3h41v5gh4b0lvqnlv831yvyh5cd"; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optional doCheck cmocka; 13 buildInputs = [ acl libuuid lzo zlib zstd ]; 14 15 - configureFlags = [ 16 - (lib.enableFeature doCheck "unit-tests") 17 - (lib.enableFeature doCheck "tests") 18 ]; 19 - enableParallelBuilding = true; 20 21 doCheck = stdenv.hostPlatform == stdenv.buildPlatform; 22 23 - meta = { 24 description = "Tools for MTD filesystems"; 25 - license = lib.licenses.gpl2Plus; 26 homepage = "http://www.linux-mtd.infradead.org/"; 27 - maintainers = with lib.maintainers; [ viric ]; 28 - platforms = with lib.platforms; linux; 29 }; 30 }
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mtd-utils"; 5 + version = "2.1.2"; 6 7 src = fetchurl { 8 url = "ftp://ftp.infradead.org/pub/${pname}/${pname}-${version}.tar.bz2"; 9 + sha256 = "sha256-itTF80cW1AZGqihySi9WFtMlpvEZJU+RTiaXbx926dY="; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optional doCheck cmocka; 13 buildInputs = [ acl libuuid lzo zlib zstd ]; 14 15 + configureFlags = with lib; [ 16 + (enableFeature doCheck "unit-tests") 17 + (enableFeature doCheck "tests") 18 ]; 19 20 doCheck = stdenv.hostPlatform == stdenv.buildPlatform; 21 22 + meta = with lib; { 23 description = "Tools for MTD filesystems"; 24 + license = licenses.gpl2Plus; 25 homepage = "http://www.linux-mtd.infradead.org/"; 26 + maintainers = with maintainers; [ viric superherointj ]; 27 + platforms = with platforms; linux; 28 }; 29 }