dotter: 0.12.10 -> 0.12.11
This commit is contained in:
parent
8ea209dfe3
commit
5120383311
1 changed files with 11 additions and 4 deletions
|
@ -1,17 +1,24 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, CoreServices, which }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchpatch
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, CoreServices
|
||||||
|
, which
|
||||||
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "dotter";
|
pname = "dotter";
|
||||||
version = "0.12.10";
|
version = "0.12.11";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "SuperCuber";
|
owner = "SuperCuber";
|
||||||
repo = "dotter";
|
repo = "dotter";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-uSM7M//3LHzdLSOruTyu46sp1a6LeodT2cCEFsuoPW4=";
|
hash = "sha256-7K0p20FqaYFzOmUAeq1ousAPCeqE4AZoARF3UY4p4bY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-JpMEC2HjAQLQiXHSE6L0HBDc0vLhd465wDK2+35aBXA=";
|
cargoHash = "sha256-BN6cdRmhvMjYQlaEa840+syuVKKUQ59TPMKicm40MTk=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue