summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <nick@nvandoorn.com>2023-05-31 21:51:47 +0000
committerNick Van Doorn <nick@nvandoorn.com>2023-05-31 21:51:47 +0000
commit8dde44513af4f0c7cc42fa0caf17c0cbac4de8e0 (patch)
tree768a39c89ec8761c2168ffd234a45860b0f5626a
parent71ab3c9712b12f6043333c76faa061a8328a3754 (diff)
Add a questionable Deemix nix derivation
-rw-r--r--deemix.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/deemix.nix b/deemix.nix
new file mode 100644
index 0000000..d6e932d
--- /dev/null
+++ b/deemix.nix
@@ -0,0 +1,26 @@
+{ stdenv, pkgs }:
+
+stdenv.mkDerivation rec {
+ name = "deemix";
+ version = "1.0";
+
+ nativeBuildInputs = [ ];
+ buildInputs = [ ];
+
+ src = pkgs.fetchurl {
+ url = "https://nvandoorn.com/public/deemix.tar.gz";
+ sha256 = "sha256-eq/IQjlie8cB+YjvPVht09SkhKz3b1YaZ6UTnvkasxA=";
+ };
+
+ installPhase = ''
+ runHook preInstall
+ mkdir -p $out
+ cp -R ./ $out/
+ runHook postInstall
+ '';
+
+ meta = {
+ description = "Deezer downloader";
+ homepage = "https://deemix.app/";
+ };
+}