b17eb34203
This fixes systemd build. Also put it into the generic expression, as there's only one version in nixpkgs ATM.
11 lines
291 B
Nix
11 lines
291 B
Nix
{ callPackage, fetchurl, libunistring, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
version = "3.5.9";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.5/gnutls-${version}.tar.xz";
|
|
sha256 = "0l9971841jsfdcvcyhas17sk5rsby6x5vvwcmmj4x3zi9q60zcc2";
|
|
};
|
|
})
|