nixpkgs/pkgs/by-name/se/serd/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

63 lines
1.3 KiB
Nix

{ lib
, stdenv
, fetchurl
, doxygen
, mandoc
, meson
, ninja
, pkg-config
, python3
, sphinx
, writeScript
}:
stdenv.mkDerivation rec {
pname = "serd";
version = "0.30.16";
outputs = [ "out" "dev" "doc" "man" ];
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.xz";
hash = "sha256-9Q9IbaUZzdjQOyDJ5CQU5FkTP1okRBHY5jyu+NmskUY=";
};
nativeBuildInputs = [
doxygen
mandoc
meson
ninja
pkg-config
python3
sphinx
];
postPatch = ''
patchShebangs .
'';
passthru = {
updateScript = writeScript "update-poke" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl pcre common-updater-scripts
set -eu -o pipefail
# Expect the text in format of 'download.drobilla.net/serd-0.30.16.tar.xz">'
new_version="$(curl -s https://drobilla.net/category/serd/ |
pcregrep -o1 'download.drobilla.net/serd-([0-9.]+).tar.xz' |
head -n1)"
update-source-version ${pname} "$new_version"
'';
};
meta = with lib; {
description = "Lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
homepage = "https://drobilla.net/software/serd";
license = licenses.mit;
maintainers = [ ];
mainProgram = "serdi";
platforms = platforms.unix;
};
}