mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
dust: init at 0.2.3
This commit is contained in:
parent
b5ca7fefc4
commit
6026e43bce
25
pkgs/tools/misc/dust/default.nix
Normal file
25
pkgs/tools/misc/dust/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, cargo, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "dust-${version}";
|
||||
version = "0.2.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bootandy";
|
||||
repo = "dust";
|
||||
rev = "v${version}";
|
||||
sha256 = "1l8z1daiq2x92449p2ciblcwl0ddgr3vqj2dsd3z8jj3y0z8j51s";
|
||||
};
|
||||
|
||||
cargoSha256 = "0x3ay440vbc64y3pd8zhd119sw8fih0njmkzpr7r8wdw3k48v96m";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "du + rust = dust. Like du but more intuitive";
|
||||
homepage = https://github.com/bootandy/dust;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.infinisil ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -15245,6 +15245,8 @@ with pkgs;
|
||||
|
||||
dunst = callPackage ../applications/misc/dunst { };
|
||||
|
||||
du-dust = callPackage ../tools/misc/dust { };
|
||||
|
||||
devede = callPackage ../applications/video/devede { };
|
||||
|
||||
denemo = callPackage ../applications/audio/denemo {
|
||||
|
Loading…
Reference in New Issue
Block a user