1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-18 23:33:01 -04:00
nixpkgs/pkgs/tools/wayland/sirula/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

39 lines
875 B
Nix

{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, gtk3
, gtk-layer-shell
}:
rustPlatform.buildRustPackage rec {
pname = "sirula";
version = "1.0.0-unstable-2023-09-02";
src = fetchFromGitHub {
owner = "DorianRudolph";
repo = pname;
rev = "b15efe85ef1fe50849a33e5919d53d05f4f66090";
hash = "sha256-S0WbqY49nKaBUMWfgDKZxFLJuk7uFcnTfV8s86V0Zxs=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"osstrtools-0.2.2" = "sha256-Co4pcikfN4vtIVK7ZsRGCWMAhMJWNNVZe/AdN1nMlmQ=";
};
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk3 gtk-layer-shell ];
meta = with lib; {
description = "Simple app launcher for wayland written in rust";
homepage = "https://github.com/DorianRudolph/sirula";
license = with licenses; [ gpl3Plus ];
maintainers = [ ];
platforms = platforms.linux;
};
}