Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sirula: 1.0.0-unstable to 1.1.0 #371977

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions pkgs/by-name/si/sirula/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 14 additions & 22 deletions pkgs/by-name/si/sirula/package.nix
Original file line number Diff line number Diff line change
@@ -1,42 +1,34 @@
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
gtk3,
gtk-layer-shell,
}:
{ nix-update-script, lib, fetchFromGitHub, rustPlatform, pkg-config, gtk3, gtk-layer-shell, }:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage {
pname = "sirula";
version = "1.0.0-unstable-2023-09-02";
version = "1.1.0";

atagen marked this conversation as resolved.
Show resolved Hide resolved
src = fetchFromGitHub {
owner = "DorianRudolph";
repo = pname;
rev = "b15efe85ef1fe50849a33e5919d53d05f4f66090";
hash = "sha256-S0WbqY49nKaBUMWfgDKZxFLJuk7uFcnTfV8s86V0Zxs=";
repo = "sirula";
atagen marked this conversation as resolved.
Show resolved Hide resolved
rev = "v1.0.0";
};
atagen marked this conversation as resolved.
Show resolved Hide resolved

cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"osstrtools-0.2.2" = "sha256-Co4pcikfN4vtIVK7ZsRGCWMAhMJWNNVZe/AdN1nMlmQ=";
"osstrtools-0.2.2" =
"sha256-Co4pcikfN4vtIVK7ZsRGCWMAhMJWNNVZe/AdN1nMlmQ=";
};
};

nativeBuildInputs = [ pkg-config ];

buildInputs = [
gtk3
gtk-layer-shell
];
buildInputs = [ gtk3 gtk-layer-shell ];

meta = with lib; {
meta = {
description = "Simple app launcher for wayland written in rust";
homepage = "https://github.com/DorianRudolph/sirula";
license = with licenses; [ gpl3Plus ];
maintainers = [ ];
platforms = platforms.linux;
license = [ lib.licenses.gpl3Plus ];
maintainers = [ lib.maintainers.atagen ];
platforms = lib.platforms.linux;
};

passthru.updateScript = nix-update-script { };
}
atagen marked this conversation as resolved.
Show resolved Hide resolved
Loading