remove meta tags for now

This commit is contained in:
2025-03-14 11:26:39 -04:00
parent 731ba8da0e
commit 81ab3a8262
4 changed files with 3 additions and 14 deletions

View File

@@ -14,7 +14,8 @@
modules = import ./modules; # NixOS modules
overlays = import ./overlays; # nixpkgs overlays
example-package = pkgs.callPackage ./pkgs/example-package { };
libosmo-cc = pkgs.callPackage ./pkgs/libosmo-cc { };
osmocom-analog = pkgs.callPackage ./pkgs/osmocom-analog { };
# some-qt5-package = pkgs.libsForQt5.callPackage ./pkgs/some-qt5-package { };
# ...
}

View File

@@ -1,5 +1,5 @@
{
description = "My personal NUR repository";
description = "dubyatp's NUR repository";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }:
let

View File

@@ -26,10 +26,4 @@ pkgs.stdenv.mkDerivation rec {
autoreconf -fi
./configure --prefix=$out
'';
meta = with lib; {
description = "Osmo-CC Library";
homepage = "https://gitea.osmocom.org/cc/libosmo-cc";
license = licenses.gpl3;
};
}

View File

@@ -36,10 +36,4 @@ pkgs.stdenv.mkDerivation rec {
autoreconf -fi
./configure --prefix=$out
'';
meta = with lib; {
description = "Software implementation of analog cellular phone standards, including AMPS and TACS";
homepage = "https://gitea.osmocom.org/cellular-infrastructure/osmocom-analog";
license = licenses.gpl3;
};
}