Skip to content

Commit

Permalink
sirula: 1.0.0-unstable -> 1.1.0 (#371977)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds authored Jan 18, 2025
2 parents 9596c76 + e22fb5e commit b2ed948
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions pkgs/by-name/si/sirula/package.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
nix-update-script,
lib,
fetchFromGitHub,
rustPlatform,
Expand All @@ -9,21 +10,17 @@

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

src = fetchFromGitHub {
owner = "DorianRudolph";
repo = pname;
rev = "b15efe85ef1fe50849a33e5919d53d05f4f66090";
hash = "sha256-S0WbqY49nKaBUMWfgDKZxFLJuk7uFcnTfV8s86V0Zxs=";
repo = "sirula";
tag = "v${version}";
hash = "sha256-rBaH2cIIaRoaw8Os60s4MknZywzDuGLagJiAvEYU4m8=";
};

cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"osstrtools-0.2.2" = "sha256-Co4pcikfN4vtIVK7ZsRGCWMAhMJWNNVZe/AdN1nMlmQ=";
};
};
useFetchCargoVendor = true;
cargoHash = "sha256-7trHMGTWtf4IT7efyKIXM7n4x6j7n2V3I7ZXSSwvzys=";

nativeBuildInputs = [ pkg-config ];

Expand All @@ -32,11 +29,13 @@ rustPlatform.buildRustPackage rec {
gtk-layer-shell
];

meta = with lib; {
passthru.updateScript = nix-update-script { };

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;
};
}

0 comments on commit b2ed948

Please sign in to comment.