about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/gputils/default.nix
blob: 37a7a8c931c3cd339321b2fae6386cfcfb57c0e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "gputils";
  version = "1.5.0-1";

  src = fetchurl {
    url = "mirror://sourceforge/gputils/${pname}-${version}.tar.bz2";
    sha256 = "055v83fdgqljprapf7rmh8x66mr13fj0qypj49xba5spx0ca123g";
  };

  meta = with stdenv.lib; {
    homepage = https://gputils.sourceforge.io/;
    license = licenses.gpl2;
    maintainers = with maintainers; [ yorickvp ];
    platforms = platforms.linux;
  };
}