Skip to content

Commit

Permalink
dut: init at 0-unstable-2024-07-31 (#326282)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds authored Oct 20, 2024
2 parents 550d0ed + 6066650 commit 48d51ff
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/by-name/du/dut/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
stdenv,
lib,
fetchFromGitea,
}:

stdenv.mkDerivation {
pname = "dut";
version = "0-unstable-2024-07-31";

src = fetchFromGitea {
domain = "codeberg.org";
owner = "201984";
repo = "dut";
rev = "041c6f26162c2286776fac246ddbda312da1563d";
hash = "sha256-YrBV5rG9rASI/5pwG3kcHoOvXBHhLJHvFFrvNhmGq2Y=";
};

installFlags = [
"DESTDIR=${placeholder "out"}"
"PREFIX="
];

meta = {
platforms = lib.platforms.all;
broken = stdenv.isDarwin;
description = "A disk usage calculator for Linux";
homepage = "https://codeberg.org/201984/dut";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ errnoh ];
mainProgram = "dut";
};
}

0 comments on commit 48d51ff

Please sign in to comment.