mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +00:00
571c71e6f7
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.
36 lines
980 B
Nix
36 lines
980 B
Nix
{ lib, python3, fetchFromGitHub, nixosTests, wrapGAppsNoGuiHook, gobject-introspection, glib }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "targetcli";
|
|
version = "2.1.58";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "open-iscsi";
|
|
repo = "${pname}-fb";
|
|
rev = "v${version}";
|
|
hash = "sha256-9QYo7jGk9iWr26j0qPQCqYsJ+vLXAsO4Xs7+7VT9/yc=";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsNoGuiHook gobject-introspection ];
|
|
buildInputs = [ glib ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ configshell rtslib pygobject3 ];
|
|
|
|
postInstall = ''
|
|
install -D targetcli.8 -t $out/share/man/man8/
|
|
install -D targetclid.8 -t $out/share/man/man8/
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) iscsi-root;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Command shell for managing the Linux LIO kernel target";
|
|
homepage = "https://github.com/open-iscsi/targetcli-fb";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|