nixpkgs/pkgs/by-name/dw/dwfv/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
559 B
Nix
Raw Normal View History

2021-10-02 16:03:01 +00:00
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "dwfv";
version = "0.4.1";
src = fetchCrate {
inherit version pname;
hash = "sha256-JzOD0QQfDfIkJQATxGpyJBrFg5l6lkkAXY2qv9bir3c=";
2021-10-02 16:03:01 +00:00
};
cargoHash = "sha256-nmnpHz9sCRlxOngcSrW+oktYIKM/A295/a03fUf3ofw=";
2021-10-02 16:03:01 +00:00
meta = with lib; {
description = "Simple digital waveform viewer with vi-like key bindings";
mainProgram = "dwfv";
2021-10-02 16:03:01 +00:00
homepage = "https://github.com/psurply/dwfv";
license = licenses.mit;
maintainers = with maintainers; [ newam ];
};
}