mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
commit
cb4249e51e
1 changed files with 4 additions and 4 deletions
|
@ -1,17 +1,17 @@
|
|||
{ lib, stdenv, fetchFromGitHub, bison, which, libressl, libevent }:
|
||||
{ lib, stdenv, fetchFromGitHub, bison, libressl, libevent }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gmid";
|
||||
version = "1.8.1";
|
||||
version = "1.8.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "omar-polo";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-XNif164C5b5sVsZW7sy0id4qM/mJzg3RhoHbwJuJqDk=";
|
||||
hash = "sha256-vghoPsyGspPn22Kl61qiaALS2R243JSuS80uKFBHc9k=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ bison which ];
|
||||
nativeBuildInputs = [ bison ];
|
||||
|
||||
buildInputs = [ libressl libevent ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue