mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
dipc: init at 1.0.0
This commit is contained in:
parent
e46e67694c
commit
265039b115
26
pkgs/by-name/di/dipc/package.nix
Normal file
26
pkgs/by-name/di/dipc/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "dipc";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "doprz";
|
||||
repo = "dipc";
|
||||
rev = "bf578bd9474084b7099ef665138667e486dce671";
|
||||
hash = "sha256-RXEC8bwdnUOaDmYIb7ci/JD+vi16tBn55FRsUmwaRzk=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-XQ85T64K1NLdSOtAFr0XluvFNTaHzoWKxoQtBQ+uSKQ=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Convert your favorite images and wallpapers with your favorite color palettes/themes";
|
||||
homepage = "https://github.com/doprz/dipc";
|
||||
license = with licenses; [ mit asl20 ];
|
||||
maintainers = with maintainers; [ ByteSudoer ];
|
||||
mainProgram = "dipc";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user