mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
fsrx: init at 1.0.0 (#177065)
This commit is contained in:
parent
5df0c92fb5
commit
6f3caa12bb
32
pkgs/tools/misc/fsrx/default.nix
Normal file
32
pkgs/tools/misc/fsrx/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib, fetchFromGitHub, rustPlatform, gitUpdater, testers, fsrx }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "fsrx";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "coloradocolby";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-pKdxYO8Rhck3UYxqiWHDlrlPS4cAPe5jLUu5Dajop/k=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-5h+ou9FLCG/WWMEQPsCTa1q+PovxUJs+6lzQ0L2bKIs=";
|
||||
|
||||
passthru = {
|
||||
updateScript = gitUpdater {
|
||||
inherit pname version;
|
||||
rev-prefix = "v";
|
||||
};
|
||||
tests.version = testers.testVersion {
|
||||
package = fsrx;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A flow state reader in the terminal";
|
||||
homepage = "https://github.com/coloradocolby/fsrx";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ MoritzBoehme ];
|
||||
};
|
||||
}
|
@ -1324,6 +1324,8 @@ with pkgs;
|
||||
|
||||
flycast = callPackage ../applications/emulators/flycast { };
|
||||
|
||||
fsrx = callPackage ../tools/misc/fsrx { };
|
||||
|
||||
fsuae = callPackage ../applications/emulators/fs-uae { };
|
||||
|
||||
fsuae-launcher = callPackage ../applications/emulators/fs-uae/launcher.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user