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.
63 lines
1.7 KiB
Nix
63 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, autoPatchelfHook }:
|
|
|
|
let
|
|
srcs = {
|
|
x86_64-linux = fetchurl {
|
|
urls = [
|
|
"https://videomap.it/script/dms-ubuntu-x64"
|
|
"https://archive.org/download/videomap/dms-ubuntu-x64"
|
|
];
|
|
sha256 = "1x7pp6k27lr206a8j2pn0wf4wjb0zi28s0g1g3rb08jmr8fh1jnh";
|
|
};
|
|
i686-linux = fetchurl {
|
|
urls = [
|
|
"https://videomap.it/script/dms-ubuntu-x32"
|
|
"https://archive.org/download/videomap/dms-ubuntu-x32"
|
|
];
|
|
sha256 = "1d62d7jz50wzk5rqqm3xab66jdzi9i1j6mwxf7r7nsgm6j5zz8r4";
|
|
};
|
|
aarch64-linux = fetchurl {
|
|
urls = [
|
|
"https://videomap.it/script/dms-ubuntu-arm64"
|
|
"https://archive.org/download/videomap/dms-ubuntu-arm64"
|
|
];
|
|
sha256 = "1l1x7iqbxn6zsh3d37yb5x15qsxlwy3cz8g2g8vnzkgaafw9vva0";
|
|
};
|
|
armv7l-linux = fetchurl {
|
|
urls = [
|
|
"https://videomap.it/script/dms-ubuntu-arm"
|
|
"https://archive.org/download/videomap/dms-ubuntu-arm"
|
|
];
|
|
sha256 = "1i7q9mylzvbsfydv4xf83nyqkh0nh01612jrqm93q1w6d0k2zvcd";
|
|
};
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "droidmote";
|
|
version = "3.0.6";
|
|
|
|
src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
dontUnpack = true;
|
|
dontBuild = true;
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -m755 -D $src $out/bin/droidmote
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Control your computer from your couch";
|
|
homepage = "https://www.videomap.it/";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ atila ];
|
|
platforms = lib.attrNames srcs;
|
|
};
|
|
}
|