aboutsummaryrefslogtreecommitdiff
path: root/pkgs/libraries/logc/default.nix
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-04-09 09:44:39 +0200
committerKarel Kočí <cynerd@email.cz>2022-04-12 21:48:06 +0200
commit1c2206f46fc9f608f805071dd5e036d46249756d (patch)
treebbb44dbfc1575f228503afc1f58810edb0373e29 /pkgs/libraries/logc/default.nix
parent5339e045194c5ad482250c0271959a5fd9f97db2 (diff)
downloadnixturris-1c2206f46fc9f608f805071dd5e036d46249756d.tar.gz
nixturris-1c2206f46fc9f608f805071dd5e036d46249756d.tar.bz2
nixturris-1c2206f46fc9f608f805071dd5e036d46249756d.zip
treewide: move sentinel to the dedicated repository
Diffstat (limited to 'pkgs/libraries/logc/default.nix')
-rw-r--r--pkgs/libraries/logc/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/libraries/logc/default.nix b/pkgs/libraries/logc/default.nix
deleted file mode 100644
index 6ffd8f4..0000000
--- a/pkgs/libraries/logc/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, lib, fetchgit
-, bootstrapHook, pkg-config, gperf
-, libconfig
-, check
-}:
-
-stdenv.mkDerivation rec {
- pname = "logc";
- version = "0.4.0";
- meta = with lib; {
- homepage = "https://gitlab.nic.cz/turris/logc";
- description = "Logging for C";
- license = licenses.mit;
- };
-
- src = fetchgit {
- url = "https://gitlab.nic.cz/turris/logc.git";
- rev = "v" + version;
- sha256 = "15nplgjgg6dxryy4yzbj4524y77ci0syi970rmbr955m9vxvhrib";
- };
- patches = [
- ./0001-configure.ac-fix-cross-compilation.patch
- ];
-
- buildInputs = [libconfig];
- nativeBuildInputs = [bootstrapHook pkg-config gperf];
- depsBuildBuild = [check];
-
- doCheck = true;
- doInstallCheck = true;
- configureFlags = lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "--enable-tests";
-}