aboutsummaryrefslogtreecommitdiff
path: root/pkgs/libraries
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/libraries')
-rw-r--r--pkgs/libraries/logc/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/libraries/logc/default.nix b/pkgs/libraries/logc/default.nix
index 1c99e19..784efd7 100644
--- a/pkgs/libraries/logc/default.nix
+++ b/pkgs/libraries/logc/default.nix
@@ -1,12 +1,11 @@
{ stdenv, lib, fetchgit
, bootstrapHook, pkg-config, gperf
, libconfig
-, pkgversion ? "0.4.0", pkgsha256 ? "15nplgjgg6dxryy4yzbj4524y77ci0syi970rmbr955m9vxvhrib"
}:
stdenv.mkDerivation rec {
pname = "logc";
- version = pkgversion;
+ version = "0.4.0";
meta = with lib; {
homepage = "https://gitlab.nic.cz/turris/logc";
description = "Logging for C";
@@ -17,7 +16,7 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = "https://gitlab.nic.cz/turris/logc.git";
rev = "v" + version;
- sha256 = pkgsha256;
+ sha256 = "15nplgjgg6dxryy4yzbj4524y77ci0syi970rmbr955m9vxvhrib";
};
buildInputs = [libconfig];