git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
21 lines
559 B
Nix
21 lines
559 B
Nix
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dwfv";
|
|
version = "0.4.1";
|
|
|
|
src = fetchCrate {
|
|
inherit version pname;
|
|
hash = "sha256-JzOD0QQfDfIkJQATxGpyJBrFg5l6lkkAXY2qv9bir3c=";
|
|
};
|
|
|
|
cargoHash = "sha256-nmnpHz9sCRlxOngcSrW+oktYIKM/A295/a03fUf3ofw=";
|
|
|
|
meta = with lib; {
|
|
description = "Simple digital waveform viewer with vi-like key bindings";
|
|
mainProgram = "dwfv";
|
|
homepage = "https://github.com/psurply/dwfv";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ newam ];
|
|
};
|
|
}
|