OSCAR: rename to oscar

This commit is contained in:
Zitrone
2024-10-02 01:40:55 +02:00
committed by Zitrone
parent 06cf0e1da4
commit 3c7cbaade8
3 changed files with 17 additions and 7 deletions
@@ -1,6 +1,12 @@
{ lib, stdenv, mkDerivation, fetchFromGitLab, qmake, qtbase, qttools, qtserialport, libGLU }:
mkDerivation rec {
pname = "OSCAR";
{
lib,
stdenv,
qt5,
fetchFromGitLab,
libGLU,
}:
qt5.mkDerivation rec {
pname = "oscar";
version = "1.5.1";
src = fetchFromGitLab {
@@ -10,8 +16,13 @@ mkDerivation rec {
hash = "sha256-FBHbPtMZeIgcR1pQflfEWK2FS8bquctXaeY/yaZofHg=";
};
buildInputs = [ qtbase qttools qtserialport libGLU ];
nativeBuildInputs = [ qmake ];
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtserialport
libGLU
];
nativeBuildInputs = [ qt5.qmake ];
postPatch = ''
substituteInPlace oscar/oscar.pro --replace "/bin/bash" "${stdenv.shell}"
'';
+1
View File
@@ -1187,6 +1187,7 @@ mapAliases {
onlyoffice-bin_7_5 = throw "onlyoffice-bin_7_5 has been removed. Please use the latest version available under onlyoffice-bin"; # Added 2024-07-03
openvswitch-lts = throw "openvswitch-lts has been removed. Please use the latest version available under openvswitch"; # Added 2024-08-24
oroborus = throw "oroborus was removed, because it was abandoned years ago."; #Added 2023-09-10
OSCAR = oscar; # Added 2024-06-12
osxfuse = macfuse-stubs; # Added 2021-03-20
ovn-lts = throw "ovn-lts has been removed. Please use the latest version available under ovn"; # Added 2024-08-24
oxen = throw "'oxen' has been removed, because it was broken, outdated and unmaintained"; # Added 2023-12-09
-2
View File
@@ -38046,8 +38046,6 @@ with pkgs;
opkg-utils = callPackage ../tools/package-management/opkg-utils { };
OSCAR = qt5.callPackage ../applications/misc/OSCAR { };
pgmanage = callPackage ../applications/misc/pgmanage { };
pgadmin4 = callPackage ../tools/admin/pgadmin { };