Merge pull request #178271 from amarshall/ufiformat

ufiformat: init at 0.9.9
This commit is contained in:
Jonas Heinrich 2022-09-04 23:19:25 +02:00 committed by GitHub
commit 1360b13120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv
, e2fsprogs
, fetchFromGitHub
, lib
}:
stdenv.mkDerivation rec {
pname = "ufiformat";
version = "0.9.9";
buildInputs = [
e2fsprogs
];
src = fetchFromGitHub {
owner = "tedigh";
repo = "ufiformat";
rev = "v${version}";
sha256 = "heFETZj9migz2s9kvmw0ZQ1ieNpU4V4Lwfp91ek2cS4=";
};
meta = with lib; {
homepage = "https://github.com/tedigh/ufiformat";
description = "Low-level disk formatting utility for USB floppy drives";
maintainers = [ maintainers.amarshall ];
platforms = platforms.linux;
license = licenses.gpl2Plus;
};
}

View File

@ -36150,6 +36150,8 @@ with pkgs;
uacme = callPackage ../tools/admin/uacme { };
ufiformat = callPackage ../tools/system/ufiformat { };
ums = callPackage ../servers/ums { };
unityhub = callPackage ../development/tools/unityhub { };