mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
rw: init at 1.0
This commit is contained in:
parent
da4695009c
commit
2aff3da773
26
pkgs/tools/misc/rw/default.nix
Normal file
26
pkgs/tools/misc/rw/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rw-${version}";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://sortix.org/rw/release/rw-portable-${version}.tar.gz";
|
||||
# Use hash provided by upstream
|
||||
sha256 = "50009730e36991dfe579716f91f4f616f5ba05ffb7bf69c03d41bf305ed93b6d";
|
||||
};
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://sortix.org/rw;
|
||||
description = "Block device and byte copying program similar to dd";
|
||||
longDescription = ''
|
||||
rw is a command line program which copies information between files
|
||||
or byte streams. The rw command is designed to be a replacement for
|
||||
dd with standard style command line flags.
|
||||
'';
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
};
|
||||
}
|
@ -4699,6 +4699,8 @@ with pkgs;
|
||||
|
||||
runzip = callPackage ../tools/archivers/runzip { };
|
||||
|
||||
rw = callPackage ../tools/misc/rw { };
|
||||
|
||||
rxp = callPackage ../tools/text/xml/rxp { };
|
||||
|
||||
rzip = callPackage ../tools/compression/rzip { };
|
||||
|
Loading…
Reference in New Issue
Block a user