umr: 1.0.8 -> 1.0.10 (#362535)

Update to 1.0.10 (latest tag: https://gitlab.freedesktop.org/tomstdenis/umr/-/tags)
Static libs are not installed anymore, so remove `postInstall`.
This commit is contained in:
Sebastian Neubauer
2024-12-07 17:38:55 -05:00
committed by GitHub
parent b0d48f0a52
commit c13b9231a2
+2 -7
View File
@@ -20,14 +20,14 @@
stdenv.mkDerivation rec {
pname = "umr";
version = "1.0.8";
version = "1.0.10";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "tomstdenis";
repo = "umr";
rev = version;
hash = "sha256-ODkTYHDrKWNvjiEeIyfsCByf7hyr5Ps9ytbKb3253bU=";
hash = "sha256-i0pTcg1Y+G/nGZSbMtlg37z12gF4heitEl5L4gfVO9c=";
};
nativeBuildInputs = [
@@ -47,11 +47,6 @@ stdenv.mkDerivation rec {
bash-completion # Tries to create bash-completions in /var/empty otherwise?
];
# Remove static libraries (there are no dynamic libraries in there)
postInstall = ''
rm -r $out/lib
'';
passthru.updateScript = nix-update-script { };
meta = with lib; {