Merge pull request #100257 from priegger/feature/update-bees
bees: 0.6.2 -> 0.6.3
This commit is contained in:
commit
65c4e2500f
|
@ -2,18 +2,15 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "0.6.2";
|
bees = stdenv.mkDerivation rec {
|
||||||
sha256 = "05niv9rivd3j3cwcx3n3vjr85wr0l5i76giq9n54d2vdwmn8qjib";
|
|
||||||
|
|
||||||
bees = stdenv.mkDerivation {
|
|
||||||
pname = "bees";
|
pname = "bees";
|
||||||
inherit version;
|
version = "0.6.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Zygo";
|
owner = "Zygo";
|
||||||
repo = "bees";
|
repo = "bees";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
inherit sha256;
|
sha256 = "sha256-brEjr7lhmKDCIDeLq+XP+ZTxv1RvwoUlszMSEYygxv8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -58,7 +55,7 @@ let
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
runCommand "bees-service-${version}" {
|
runCommand "bees-service" {
|
||||||
inherit bash bees coreutils utillinux;
|
inherit bash bees coreutils utillinux;
|
||||||
btrfsProgs = btrfs-progs; # needs to be a valid shell variable name
|
btrfsProgs = btrfs-progs; # needs to be a valid shell variable name
|
||||||
} ''
|
} ''
|
||||||
|
|
Loading…
Reference in New Issue