mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Merge pull request #178271 from amarshall/ufiformat
ufiformat: init at 0.9.9
This commit is contained in:
commit
1360b13120
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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user