mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
beanstalkd: switch to fetchFromGitHub
This commit is contained in:
parent
aa298de800
commit
3d9480f720
@ -1,12 +1,14 @@
|
||||
{ lib, stdenv, fetchurl, installShellFiles, nixosTests }:
|
||||
{ lib, stdenv, fetchFromGitHub, installShellFiles, nixosTests }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.12";
|
||||
pname = "beanstalkd";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/kr/beanstalkd/archive/v${version}.tar.gz";
|
||||
sha256 = "0gw8aygysnjzzfjgfzivy5vajla9adg2zcr4h8rrdf0xyykpwfpl";
|
||||
src = fetchFromGitHub {
|
||||
owner = "kr";
|
||||
repo = "beanstalkd";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-HChpVZ02l08CObrb4+ZEjBiXeQMMYi6zhSWUTDxuEao=";
|
||||
};
|
||||
|
||||
hardeningDisable = [ "fortify" ];
|
||||
|
Loading…
Reference in New Issue
Block a user