summary refs log tree commit diff
path: root/pkgs/tools/filesystems/mtdutils
diff options
context:
space:
mode:
authorsuperherointj <5861043+superherointj@users.noreply.github.com>2021-03-11 16:04:42 -0300
committersuperherointj <5861043+superherointj@users.noreply.github.com>2021-03-11 16:04:42 -0300
commit795e18ed2e002649dc1d4ebd337cc240c5edeadf (patch)
treebbb618fe0f445cf9c0fb7156eec5d8344953be1c /pkgs/tools/filesystems/mtdutils
parent3d92c78160c997d2df32f2ada91375d8e57095a6 (diff)
downloadnixpkgs-795e18ed2e002649dc1d4ebd337cc240c5edeadf.tar
nixpkgs-795e18ed2e002649dc1d4ebd337cc240c5edeadf.tar.gz
nixpkgs-795e18ed2e002649dc1d4ebd337cc240c5edeadf.tar.bz2
nixpkgs-795e18ed2e002649dc1d4ebd337cc240c5edeadf.tar.lz
nixpkgs-795e18ed2e002649dc1d4ebd337cc240c5edeadf.tar.xz
nixpkgs-795e18ed2e002649dc1d4ebd337cc240c5edeadf.tar.zst
nixpkgs-795e18ed2e002649dc1d4ebd337cc240c5edeadf.zip
mtd-utils: 2.1.1 -> 2.1.2
Diffstat (limited to 'pkgs/tools/filesystems/mtdutils')
-rw-r--r--pkgs/tools/filesystems/mtdutils/default.nix19
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/tools/filesystems/mtdutils/default.nix b/pkgs/tools/filesystems/mtdutils/default.nix
index d753e7c5204..cb40e72c30b 100644
--- a/pkgs/tools/filesystems/mtdutils/default.nix
+++ b/pkgs/tools/filesystems/mtdutils/default.nix
@@ -2,29 +2,28 @@
 
 stdenv.mkDerivation rec {
   pname = "mtd-utils";
-  version = "2.1.1";
+  version = "2.1.2";
 
   src = fetchurl {
     url = "ftp://ftp.infradead.org/pub/${pname}/${pname}-${version}.tar.bz2";
-    sha256 = "1lijl89l7hljx8xx70vrz9srd3h41v5gh4b0lvqnlv831yvyh5cd";
+    sha256 = "sha256-itTF80cW1AZGqihySi9WFtMlpvEZJU+RTiaXbx926dY=";
   };
 
   nativeBuildInputs = [ autoreconfHook pkg-config ] ++ lib.optional doCheck cmocka;
   buildInputs = [ acl libuuid lzo zlib zstd ];
 
-  configureFlags = [
-    (lib.enableFeature doCheck "unit-tests")
-    (lib.enableFeature doCheck "tests")
+  configureFlags = with lib; [
+    (enableFeature doCheck "unit-tests")
+    (enableFeature doCheck "tests")
   ];
-  enableParallelBuilding = true;
 
   doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
 
-  meta = {
+  meta = with lib; {
     description = "Tools for MTD filesystems";
-    license = lib.licenses.gpl2Plus;
+    license = licenses.gpl2Plus;
     homepage = "http://www.linux-mtd.infradead.org/";
-    maintainers = with lib.maintainers; [ viric ];
-    platforms = with lib.platforms; linux;
+    maintainers = with maintainers; [ viric superherointj ];
+    platforms = with platforms; linux;
   };
 }