ufiformat: init at 0.9.9
This commit is contained in:
parent
07eb8d105a
commit
d678accdf8
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/system/ufiformat/default.nix
Normal file
29
pkgs/tools/system/ufiformat/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -34943,6 +34943,8 @@ with pkgs;
|
|||
|
||||
uacme = callPackage ../tools/admin/uacme { };
|
||||
|
||||
ufiformat = callPackage ../tools/system/ufiformat { };
|
||||
|
||||
ums = callPackage ../servers/ums { };
|
||||
|
||||
unityhub = callPackage ../development/tools/unityhub { };
|
||||
|
|
Loading…
Reference in a new issue